mirror of https://github.com/macssh/macssh.git
fix for CW Pro 7 with 68K Pro 6 headers
This commit is contained in:
parent
1e1ca0ecc5
commit
9df88ea9d0
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue