From eeaecf1d9cd7f868ce169d72e49807f26da6d365 Mon Sep 17 00:00:00 2001 From: Erik van der Kouwe Date: Mon, 25 Jan 2010 18:17:04 +0000 Subject: [PATCH] Explicitly mark i8_t as signed --- include/minix/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.44.0