* include/stdint.h (intptr_t): Fix typo.
Thanks to Charles Wilson for report.
This commit is contained in:
parent
eb4b7204c2
commit
22af2ce141
|
@ -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>
|
||||
|
||||
* 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
|
||||
#define _INTPTR_T_DEFINED
|
||||
#ifdef _WIN64
|
||||
typedef __int64 uintptr_t;
|
||||
typedef __int64 intptr_t;
|
||||
#else
|
||||
typedef int uintptr_t;
|
||||
typedef int intptr_t;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue