]> mj.ucw.cz Git - libucw.git/commitdiff
Added `u8' and `s8' to keep consistency.
authorMartin Mares <mj@ucw.cz>
Sat, 2 Apr 2005 10:59:21 +0000 (10:59 +0000)
committerMartin Mares <mj@ucw.cz>
Sat, 2 Apr 2005 10:59:21 +0000 (10:59 +0000)
lib/config.h

index 7000d63aa912996a91f04bd0dc61ffa7ea8332fe..be3d43fabd48cbc4a6c4cc6f3882a41856f55b30 100644 (file)
@@ -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 */