Explicitly mark i8_t as signed

This commit is contained in:
Erik van der Kouwe 2010-01-25 18:17:04 +00:00
parent f8804c0240
commit eeaecf1d9c

View file

@ -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