X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fconfig.h;h=be3d43fabd48cbc4a6c4cc6f3882a41856f55b30;hb=8da1372a2339f2c606a43e4bdcb48e4c34d84ebc;hp=c601cd2848da370b139b5cc9fb1ee737a770f66b;hpb=f955afce539ec1992334c95301753079ca101df2;p=libucw.git diff --git a/lib/config.h b/lib/config.h index c601cd28..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 */ @@ -34,7 +36,7 @@ typedef unsigned int sh_time_t; /* Timestamp */ #define NULL (void *)0 #endif -#ifdef CONFIG_LARGE_FILES /* File positions */ +#ifdef CONFIG_LFS /* File positions */ typedef s64 sh_off_t; #else typedef s32 sh_off_t;