diff options
author | Christopher Faylor <me@cgf.cx> | 2008-05-17 21:34:05 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2008-05-17 21:34:05 +0000 |
commit | a4e3764e5152c1a526fa673fe8a36278b8642f47 (patch) | |
tree | fb502750d65a1ed4e96e95673f01fe56f82c472a /winsup/cygwin/include | |
parent | 8437dd5c80768ee34a9a63c64d92dd02aa71997f (diff) | |
download | cygnal-a4e3764e5152c1a526fa673fe8a36278b8642f47.tar.gz cygnal-a4e3764e5152c1a526fa673fe8a36278b8642f47.tar.bz2 cygnal-a4e3764e5152c1a526fa673fe8a36278b8642f47.zip |
* include/stdint.h: Use int rather than long for {u,}int32_t.
Diffstat (limited to 'winsup/cygwin/include')
-rw-r--r-- | winsup/cygwin/include/stdint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/include/stdint.h b/winsup/cygwin/include/stdint.h index 141158123..9d45015f0 100644 --- a/winsup/cygwin/include/stdint.h +++ b/winsup/cygwin/include/stdint.h @@ -17,7 +17,7 @@ details. */ #define __int8_t_defined typedef signed char int8_t; typedef short int16_t; -typedef long int32_t; +typedef int int32_t; typedef long long int64_t; #endif @@ -25,7 +25,7 @@ typedef unsigned char uint8_t; typedef unsigned short uint16_t; #ifndef __uint32_t_defined #define __uint32_t_defined -typedef unsigned long uint32_t; +typedef unsigned int uint32_t; #endif typedef unsigned long long uint64_t; |