Fix NetBSD stat

db4
Slava Pestov 2008-06-12 01:32:21 -05:00
parent b8aad67946
commit 693ce07672
2 changed files with 4 additions and 4 deletions

View File

@ -25,5 +25,5 @@ C-STRUCT: stat
FUNCTION: int __stat30 ( char* pathname, stat* buf ) ;
FUNCTION: int __lstat30 ( char* pathname, stat* buf ) ;
: stat __stat30 ;
: lstat __lstat30 ;
: stat ( pathname buf -- n ) __stat30 ; inline
: lstat ( pathname buf -- n ) __lstat30 ; inline

View File

@ -25,5 +25,5 @@ C-STRUCT: stat
FUNCTION: int __stat13 ( char* pathname, stat* buf ) ;
FUNCTION: int __lstat13 ( char* pathname, stat* buf ) ;
: stat __stat13 ; inline
: lstat __lstat13 ; inline
: stat ( pathname buf -- n ) __stat13 ; inline
: lstat ( pathname buf -- n ) __lstat13 ; inline