Can't make epicsInt8 a 'signed char', it breaks too much stuff.

This is a problem - on some archs char is signed, on others not.
This commit is contained in:
Andrew Johnson
2008-04-01 15:54:01 +00:00
parent f21aed109c
commit e8d52af7bc

View File

@@ -50,7 +50,7 @@ typedef enum {
typedef int64_t epicsInt64;
typedef uint64_t epicsUInt64;
#else
typedef signed char epicsInt8;
typedef char epicsInt8;
typedef unsigned char epicsUInt8;
typedef short epicsInt16;
typedef unsigned short epicsUInt16;