fix for CW Pro 7 with 68K Pro 6 headers

This commit is contained in:
chombier 2002-04-09 16:07:44 +00:00
parent 1e1ca0ecc5
commit 9df88ea9d0
1 changed files with 4 additions and 0 deletions

View File

@ -10,7 +10,11 @@
#include <ansi_parms.h>
#if __MSL__ < 0x7001
#if __MSL__ < 0x6000
typedef char int8_t;
#else
typedef signed char int8_t;
#endif
typedef short int16_t;
typedef long int32_t;
typedef SInt64 int64_t;