]> gitweb.factorcode.org Git - factor.git/commitdiff
fix openbsd bootstrap
authorDoug Coleman <doug.coleman@gmail.com>
Thu, 1 Oct 2009 02:07:57 +0000 (21:07 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Thu, 1 Oct 2009 02:07:57 +0000 (21:07 -0500)
basis/unix/statfs/openbsd/openbsd.factor

index cd720d74d41eb3eb6cc865ff9f51a14e9b8322fe..4e65e74c2c085f37ced2478c446b8124aa67e9c5 100644 (file)
@@ -1,6 +1,7 @@
 ! Copyright (C) 2008 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: alien.c-types alien.syntax unix.types unix.stat classes.struct ;
+USING: alien.c-types alien.syntax unix.types classes.struct 
+unix.stat ;
 IN: unix.statfs.openbsd
 
 CONSTANT: MFSNAMELEN 16
@@ -30,4 +31,4 @@ STRUCT: statfs
     { f_mntfromname { char MNAMELEN } }
     { mount_info char[160] } ;
 
-FUNCTION: int statfs ( char* path, statvfs* buf ) ;
+FUNCTION: int statfs ( char* path, statfs* buf ) ;