From 46788a2b18539380b290230c13a3d3e90c8ce031 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sat, 2 Apr 2005 10:59:21 +0000 Subject: [PATCH] Added `u8' and `s8' to keep consistency. --- lib/config.h | 2 ++ 1 file changed, 2 insertions(+) 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 */ -- 2.39.2