From: Erik van der Kouwe Date: Mon, 25 Jan 2010 18:17:04 +0000 (+0000) Subject: Explicitly mark i8_t as signed X-Git-Tag: v3.1.6~34 X-Git-Url: http://zhaoyanbai.com/repos/Bv9ARM.ch03.html?a=commitdiff_plain;h=eeaecf1d9cd7f868ce169d72e49807f26da6d365;p=minix.git Explicitly mark i8_t as signed --- diff --git a/include/minix/types.h b/include/minix/types.h index d9663c9d1..acd7156d3 100644 --- a/include/minix/types.h +++ b/include/minix/types.h @@ -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