]> gitweb.factorcode.org Git - factor.git/commitdiff
unix.stat.linux: stat-func
authorDoug Coleman <doug.coleman@gmail.com>
Sun, 24 Mar 2013 05:48:57 +0000 (22:48 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Sun, 24 Mar 2013 05:48:57 +0000 (22:48 -0700)
basis/unix/stat/linux/32/32.factor
basis/unix/stat/linux/64/64.factor

index d0f60d75819079b24ffd87c278e3476fe3c2160a..8847eec88401998723b0c080f942e99fc65e58a9 100644 (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 ;
index 8913fc65569a2cb6af06c4189f4b6492a5d15065..27a3835ea219c448d8aab7054ec939fa98571cb9 100644 (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 ;