Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proper suffixes added #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions include/stdint.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,16 +127,16 @@ typedef unsigned long long uint_fast64_t;
#if __LONGLONG

#define INT64_MIN (-9223372036854775807LL-1LL)
#define INT64_MAX 9223372036854775807
#define UINT64_MAX 18446744073709551615
#define INT64_MAX 9223372036854775807LL
#define UINT64_MAX 18446744073709551615ULL

#define INT_LEAST64_MIN (-9223372036854775807LL-1LL)
#define INT_LEAST64_MAX 9223372036854775807
#define UINT_LEAST64_MAX 18446744073709551615
#define INT_LEAST64_MAX 9223372036854775807LL
#define UINT_LEAST64_MAX 18446744073709551615ULL

#define INT_FAST64_MIN (-9223372036854775807LL-1LL)
#define INT_FAST64_MAX 9223372036854775807
#define UINT_FAST64_MAX 18446744073709551615
#define INT_FAST64_MAX 9223372036854775807LL
#define UINT_FAST64_MAX 18446744073709551615ULL

#endif

Expand All @@ -152,8 +152,8 @@ typedef unsigned long long uint_fast64_t;

#if __LONGLONG
#define INTMAX_MIN (-9223372036854775807LL-1LL)
#define INTMAX_MAX 9223372036854775807
#define UINTMAX_MAX 18446744073709551615
#define INTMAX_MAX 9223372036854775807LL
#define UINTMAX_MAX 18446744073709551615ULL
#define INTMAX_C(v) __EXPAND(__EXPAND(v)##LL)
#define UINTMAX_C(v) __EXPAND(__EXPAND(v)##ULL)
#else
Expand Down