* include/stdint.h: Use int rather than long for {u,}int32_t.
This commit is contained in:
		| @@ -1,3 +1,7 @@ | |||||||
|  | 2008-05-17  Christopher Faylor  <me+cygwin@cgf.cx> | ||||||
|  |  | ||||||
|  | 	* include/stdint.h: Use int rather than long for {u,}int32_t. | ||||||
|  |  | ||||||
| 2008-05-16  Corinna Vinschen  <corinna@vinschen.de> | 2008-05-16  Corinna Vinschen  <corinna@vinschen.de> | ||||||
|  |  | ||||||
| 	* CYGWIN_LICENSE: Remove duplicate file here. | 	* CYGWIN_LICENSE: Remove duplicate file here. | ||||||
|   | |||||||
| @@ -17,7 +17,7 @@ details. */ | |||||||
| #define __int8_t_defined | #define __int8_t_defined | ||||||
| typedef signed char int8_t; | typedef signed char int8_t; | ||||||
| typedef short int16_t; | typedef short int16_t; | ||||||
| typedef long int32_t; | typedef int int32_t; | ||||||
| typedef long long int64_t; | typedef long long int64_t; | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| @@ -25,7 +25,7 @@ typedef unsigned char uint8_t; | |||||||
| typedef unsigned short uint16_t; | typedef unsigned short uint16_t; | ||||||
| #ifndef __uint32_t_defined | #ifndef __uint32_t_defined | ||||||
| #define __uint32_t_defined | #define __uint32_t_defined | ||||||
| typedef unsigned long uint32_t; | typedef unsigned int uint32_t; | ||||||
| #endif | #endif | ||||||
| typedef unsigned long long uint64_t; | typedef unsigned long long uint64_t; | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user