* include/stdint.h (intptr_t): Fix typo.

Thanks to Charles Wilson for report.
This commit is contained in:
Danny Smith 2007-05-08 03:19:28 +00:00
parent eb4b7204c2
commit 22af2ce141
2 changed files with 7 additions and 2 deletions

View File

@ -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.

View File

@ -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