* stdint.h: Fix gcc c99-stdint-1 testcase (define UINT8_MAX and UINT16_MAX without the trailing 'U') git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@1178 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-headers/include/ChangeLog b/mingw-w64-headers/include/ChangeLog index 83da39d..2f65167 100644 --- a/mingw-w64-headers/include/ChangeLog +++ b/mingw-w64-headers/include/ChangeLog
@@ -1,3 +1,8 @@ +2009-08-20 Ozkan Sezer <sezeroz@gmail.com> + + * stdint.h: Fix gcc c99-stdint-1 testcase (define UINT8_MAX and + UINT16_MAX without the trailing 'U') + 2009-08-18 Kai Tietz <kai.tietz@onevision.com> Guard __RPC_API MIDL_user_allocate and __RPC_API MIDL_user_free
diff --git a/mingw-w64-headers/include/stdint.h b/mingw-w64-headers/include/stdint.h index af68e2f..7a2ba1c 100644 --- a/mingw-w64-headers/include/stdint.h +++ b/mingw-w64-headers/include/stdint.h
@@ -82,8 +82,8 @@ #define INT32_MAX 2147483647 #define INT64_MAX 9223372036854775807LL -#define UINT8_MAX 0xffU /* 255U */ -#define UINT16_MAX 0xffffU /* 65535U */ +#define UINT8_MAX 255 +#define UINT16_MAX 65535 #define UINT32_MAX 0xffffffffU /* 4294967295U */ #define UINT64_MAX 0xffffffffffffffffULL /* 18446744073709551615ULL */