Fix 64-bit stat

db4
Doug Coleman 2007-04-14 06:13:34 -05:00
parent 04de7004b7
commit d7872708a0
1 changed files with 6 additions and 4 deletions

View File

@ -20,8 +20,10 @@ C-STRUCT: stat
{ "uint32_t" "st_flags" }
{ "uint32_t" "st_gen" }
{ "uint32_t" "st_spare0" }
{ "timespec" "st_birthtim" }
{ "int" "__pad5" } ;
{ "timespec" "st_birthtim" } ;
FUNCTION: int stat ( char* pathname, stat* buf ) ;
FUNCTION: int lstat ( char* pathname, stat* buf ) ;
FUNCTION: int __stat13 ( char* pathname, stat* buf ) ;
FUNCTION: int __lstat13 ( char* pathname, stat* buf ) ;
: stat __stat13 ; inline
: lstat __lstat13 ; inline