Make sure epicsInt8 is signed on all architectures

This commit is contained in:
2021-12-17 09:42:04 +01:00
parent 1c3aa01846
commit c5012d9f73
5 changed files with 20 additions and 3 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ typedef enum {
* These are sufficient for all our current archs
* @{
*/
typedef char epicsInt8;
typedef signed char epicsInt8;
typedef unsigned char epicsUInt8;
typedef short epicsInt16;
typedef unsigned short epicsUInt16;