From: Martin Mares Date: Sat, 9 Sep 2006 19:56:10 +0000 (+0200) Subject: Added sh_fstat. X-Git-Tag: holmes-import~562^2^2~1 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=b738d03853477aa6bea4d4f948f4ec6cf65aab9c;p=libucw.git Added sh_fstat. --- diff --git a/lib/lfs.h b/lib/lfs.h index 5aac2363..274b72a7 100644 --- a/lib/lfs.h +++ b/lib/lfs.h @@ -24,6 +24,7 @@ #define sh_pread pread64 #define sh_pwrite pwrite64 #define sh_stat stat64 +#define sh_fstat fstat64 typedef struct stat64 sh_stat_t; #else /* !CONFIG_LFS */ @@ -35,6 +36,7 @@ typedef struct stat64 sh_stat_t; #define sh_pread pread #define sh_pwrite pwrite #define sh_stat stat +#define sh_fstat fstat typedef struct stat sh_stat_t; #endif /* !CONFIG_LFS */