work around vc6 brain damage; it can't figure out that "short" == "__int16",

etc
This commit is contained in:
Glenn Maynard
2004-05-14 05:37:05 +00:00
parent 3f91f9e235
commit a10ad4c232
+6 -6
View File
@@ -32,12 +32,12 @@ void my_usleep( unsigned long usec );
#define usleep my_usleep
/* Missing stdint types: */
typedef __int8 int8_t;
typedef unsigned __int8 uint8_t;
typedef __int16 int16_t;
typedef unsigned __int16 uint16_t;
typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef signed short int16_t;
typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int uint32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
static inline int64_t llabs( int64_t i ) { return i >= 0? i: -i; }