Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2005-05-23 17:13:00 +0400
committerCorinna Vinschen <corinna@vinschen.de>2005-05-23 17:13:00 +0400
commite0242a025a5c2810a048756944747048d233482a (patch)
tree5ff80c531263bb73ddd6e595e3554fa8a7c7b23f /winsup/cygwin/include/stdint.h
parent827cff7fe29325d4c768447028b9e6658240c33d (diff)
* include/stdint.h (INTMAX_C, UINTMAX_C): Fix definition.
Diffstat (limited to 'winsup/cygwin/include/stdint.h')
-rw-r--r--winsup/cygwin/include/stdint.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/include/stdint.h b/winsup/cygwin/include/stdint.h
index 406565cc0..5456239fb 100644
--- a/winsup/cygwin/include/stdint.h
+++ b/winsup/cygwin/include/stdint.h
@@ -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 */