intptr_t fix for VC6

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1089 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
gewlitys
2003-07-26 11:09:01 +00:00
parent 9f896e664c
commit 39e291252c
+5 -1
View File
@@ -23,7 +23,11 @@
#define _TYPES_H #define _TYPES_H
#ifdef _MSC_VER #ifdef _MSC_VER
# include <stddef.h> # if (_MSC_VER >= 1300)
# include <stddef.h>
# else
typedef int intptr_t;
# endif
#else #else
# include <stdint.h> # include <stdint.h>
#endif #endif