Explicitly mark i8_t as signed
This commit is contained in:
parent
f8804c0240
commit
eeaecf1d9c
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@
|
|||
|
||||
typedef unsigned char u8_t; /* 8 bit type */
|
||||
typedef unsigned short u16_t; /* 16 bit type */
|
||||
typedef char i8_t; /* 8 bit signed type */
|
||||
typedef signed char i8_t; /* 8 bit signed type */
|
||||
typedef short i16_t; /* 16 bit signed type */
|
||||
|
||||
#if __SIZEOF_LONG__ > 4
|
||||
|
|
Loading…
Reference in a new issue