]> gitweb.factorcode.org Git - factor.git/commitdiff
use unix.stat to fix bootstrap
authorDoug Coleman <doug.coleman@gmail.com>
Fri, 9 Jan 2009 22:07:16 +0000 (16:07 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Fri, 9 Jan 2009 22:07:16 +0000 (16:07 -0600)
basis/unix/statfs/freebsd/freebsd.factor
basis/unix/statfs/linux/linux.factor
basis/unix/statfs/openbsd/openbsd.factor

index efd12b7d6cbf6f25a194dc6873a9444c88e6d043..70e2d5e561938fa9ec886492c18897640636aec8 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: alien.syntax unix.types ;
+USING: alien.syntax unix.types unix.stat ;
 IN: unix.statfs.freebsd
 
 CONSTANT: MFSNAMELEN      16            ! length of type name including null */
index 20688680fbca7995818236d80503ccdf72fa9a6a..c0db5ced1d899f220962879bf94e96c57d340c87 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: alien.syntax unix.types ;
+USING: alien.syntax unix.types unix.stat ;
 IN: unix.statfs.linux
 
 C-STRUCT: statfs64
index 456883514a377968530101ee9fd4b5861b94323d..60590be4ea0275a901d12be20ca876ac832ad849 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: alien.syntax unix.types ;
+USING: alien.syntax unix.types unix.stat ;
 IN: unix.statfs.openbsd
 
 CONSTANT: MFSNAMELEN 16