]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/unix/stat/linux/32/32.factor
rename current string-mangling "char*" to "c-string". char* is now just a boring...
[factor.git] / basis / unix / stat / linux / 32 / 32.factor
index f01140ff4b2b6256ac8f5e46aab2d34c05fa2a19..b3becff2408caaa2e9bbc72ee1744ad7ff778fe5 100644 (file)
@@ -21,8 +21,8 @@ STRUCT: stat
     { st_ctimespec timespec }
     { st_ino ulonglong } ;
 
-FUNCTION: int __xstat64  ( int ver, char* pathname, stat* buf ) ;
-FUNCTION: int __lxstat64 ( int ver, char* pathname, stat* buf ) ;
+FUNCTION: int __xstat64  ( int ver, c-string pathname, stat* buf ) ;
+FUNCTION: int __lxstat64 ( int ver, c-string pathname, stat* buf ) ;
 
 :  stat ( pathname buf -- int ) [ 1 ] 2dip __xstat64 ;
 : lstat ( pathname buf -- int ) [ 1 ] 2dip __lxstat64 ;