From: Martin Mares Date: Sat, 2 Apr 2005 10:59:21 +0000 (+0000) Subject: Added `u8' and `s8' to keep consistency. X-Git-Tag: holmes-import~807 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=46788a2b18539380b290230c13a3d3e90c8ce031;p=libucw.git Added `u8' and `s8' to keep consistency. --- diff --git a/lib/config.h b/lib/config.h index 7000d63a..be3d43fa 100644 --- a/lib/config.h +++ b/lib/config.h @@ -18,6 +18,8 @@ typedef unsigned char byte; /* exactly 8 bits, unsigned */ typedef signed char sbyte; /* exactly 8 bits, signed */ +typedef unsigned char u8; /* exactly 8 bits, unsigned */ +typedef signed char s8; /* exactly 8 bits, signed */ typedef unsigned short word; /* exactly 16 bits, unsigned */ typedef short sword; /* exactly 16 bits, signed */ typedef unsigned short u16; /* exactly 16 bits, unsigned */