From: Robert Spalek Date: Fri, 27 Oct 2006 03:03:32 +0000 (-0700) Subject: separate the support of large files from using LFS versions of file functions X-Git-Tag: holmes-import~507^2~38 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=a787a8f5b81d1c2e5a8b4265a7fa9888fdceec82;p=libucw.git separate the support of large files from using LFS versions of file functions --- diff --git a/lib/config.h b/lib/config.h index a3c47389..6f24c6d5 100644 --- a/lib/config.h +++ b/lib/config.h @@ -37,7 +37,7 @@ typedef unsigned int sh_time_t; /* Timestamp */ #define NULL (void *)0 #endif -#ifdef CONFIG_LFS /* File positions */ +#ifdef CONFIG_LARGE_FILES /* File positions */ typedef s64 sh_off_t; #else typedef s32 sh_off_t;