unix.stat.linux: stat-func

db4
Doug Coleman 2013-03-23 22:48:57 -07:00
parent 5732c61f12
commit f5d0035ac5
2 changed files with 2 additions and 2 deletions

View File

@ -25,6 +25,6 @@ FUNCTION: int __xstat64 ( int ver, c-string pathname, stat* buf ) ;
FUNCTION: int __lxstat64 ( int ver, c-string pathname, stat* buf ) ;
FUNCTION: int __fxstat64 ( int ver, int fd, stat* buf ) ;
: stat ( pathname buf -- int ) [ 1 ] 2dip __xstat64 ;
: stat-func ( pathname buf -- int ) [ 1 ] 2dip __xstat64 ;
: lstat ( pathname buf -- int ) [ 1 ] 2dip __lxstat64 ;
: fstat ( fd buf -- int ) [ 1 ] 2dip __fxstat64 ;

View File

@ -25,6 +25,6 @@ FUNCTION: int __xstat64 ( int ver, c-string pathname, stat* buf ) ;
FUNCTION: int __lxstat64 ( int ver, c-string pathname, stat* buf ) ;
FUNCTION: int __fxstat64 ( int ver, int fd, stat* buf ) ;
: stat ( pathname buf -- int ) [ 1 ] 2dip __xstat64 ;
: stat-func ( pathname buf -- int ) [ 1 ] 2dip __xstat64 ;
: lstat ( pathname buf -- int ) [ 1 ] 2dip __lxstat64 ;
: fstat ( fd buf -- int ) [ 1 ] 2dip __fxstat64 ;