]> mj.ucw.cz Git - libucw.git/blobdiff - lib/config.h
final changes to substr analyser... closes Bug 2385
[libucw.git] / lib / config.h
index c601cd2848da370b139b5cc9fb1ee737a770f66b..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 */
@@ -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;