]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/unix/stat/macosx/macosx.factor
rename current string-mangling "char*" to "c-string". char* is now just a boring...
[factor.git] / basis / unix / stat / macosx / macosx.factor
index 4e6b2dfb21e2d1400f4c78d0fe55165765bb0fd9..024cd317e81672426df1f8a34d491388c9521d6a 100644 (file)
@@ -26,8 +26,8 @@ STRUCT: stat
     { st_qspare0 __int64_t }
     { st_qspare1 __int64_t } ;
 
-FUNCTION: int stat64  ( char* pathname, stat* buf ) ;
-FUNCTION: int lstat64 ( char* pathname, stat* buf ) ;
+FUNCTION: int stat64  ( c-string pathname, stat* buf ) ;
+FUNCTION: int lstat64 ( c-string pathname, stat* buf ) ;
 
 : stat ( path buf -- n ) stat64 ;
 : lstat ( path buf -- n ) lstat64 ;