]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/unix/statvfs/macosx/macosx.factor
use radix literals
[factor.git] / basis / unix / statvfs / macosx / macosx.factor
index 18b794acbf71e9b4428c86d0c9af5d777caded13..79c9b0e3137c74bc4ce9341d07cb4ac6b7dfddfc 100644 (file)
@@ -17,7 +17,7 @@ STRUCT: statvfs
     { f_namemax ulong } ;
 
 ! Flags
-CONSTANT: ST_RDONLY   HEX: 1 ! Read-only file system
-CONSTANT: ST_NOSUID   HEX: 2 ! Does not honor setuid/setgid
+CONSTANT: ST_RDONLY   0x1 ! Read-only file system
+CONSTANT: ST_NOSUID   0x2 ! Does not honor setuid/setgid
 
 FUNCTION: int statvfs ( c-string path, statvfs* buf ) ;