* include/stdint.h (INTMAX_C, UINTMAX_C): Fix definition.

This commit is contained in:
Corinna Vinschen
2005-05-23 13:13:00 +00:00
parent 827cff7fe2
commit e0242a025a
2 changed files with 23 additions and 2 deletions

View File

@ -176,7 +176,7 @@ typedef unsigned long long uintmax_t;
/* Macros for greatest-width integer constant expressions */
#define INTMAX_C(x) x ## L
#define UINTMAX_C(x) x ## UL
#define INTMAX_C(x) x ## LL
#define UINTMAX_C(x) x ## ULL
#endif /* _STDINT_H */