* include/stdint.h (intptr_t): Fix typo.
Thanks to Charles Wilson for report.
This commit is contained in:
		| @@ -1,3 +1,8 @@ | |||||||
|  | 2007-05-08  Danny Smith  <dannysmith@users.sourceforge.net> | ||||||
|  |  | ||||||
|  | 	* include/stdint.h (intptr_t): Fix typo. | ||||||
|  | 	Thanks to Charles Wilson for report. | ||||||
|  |  | ||||||
| 2007-05-07  Danny Smith  <dannysmith@users.sourceforge.net> | 2007-05-07  Danny Smith  <dannysmith@users.sourceforge.net> | ||||||
|  |  | ||||||
| 	* include/stdint.h (intptr_t): Protect with _INTPTR_T_DEFINED. | 	* include/stdint.h (intptr_t): Protect with _INTPTR_T_DEFINED. | ||||||
|   | |||||||
| @@ -61,9 +61,9 @@ typedef unsigned long long   uint_fast64_t; | |||||||
| #ifndef _INTPTR_T_DEFINED | #ifndef _INTPTR_T_DEFINED | ||||||
| #define _INTPTR_T_DEFINED | #define _INTPTR_T_DEFINED | ||||||
| #ifdef _WIN64 | #ifdef _WIN64 | ||||||
|   typedef __int64 uintptr_t; |   typedef __int64 intptr_t; | ||||||
| #else | #else | ||||||
|   typedef int uintptr_t; |   typedef int intptr_t; | ||||||
| #endif | #endif | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user