]> gitweb.factorcode.org Git - factor.git/commitdiff
fix bootstrap
authorDoug Coleman <doug.coleman@gmail.com>
Fri, 9 Jan 2009 20:41:00 +0000 (14:41 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Fri, 9 Jan 2009 20:41:00 +0000 (14:41 -0600)
basis/unix/statfs/freebsd/freebsd.factor
basis/unix/statfs/linux/linux.factor
basis/unix/statfs/macosx/macosx.factor
basis/unix/statfs/openbsd/openbsd.factor

index e6a033e09d505f484da2fa0f82ded795312ef563..efd12b7d6cbf6f25a194dc6873a9444c88e6d043 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: alien.syntax ;
+USING: alien.syntax unix.types ;
 IN: unix.statfs.freebsd
 
 CONSTANT: MFSNAMELEN      16            ! length of type name including null */
index 6550ee572e023926968ec997fff99b28e434ec39..20688680fbca7995818236d80503ccdf72fa9a6a 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: alien.syntax ;
+USING: alien.syntax unix.types ;
 IN: unix.statfs.linux
 
 C-STRUCT: statfs64
index f80eb29ccd785386dbcd4305350aa5523b2cae18..c26294973032acc6ec91003797b1fe7d289f40c7 100644 (file)
@@ -2,7 +2,8 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: alien.c-types io.encodings.utf8 io.encodings.string
 kernel sequences unix.stat accessors unix combinators math
-grouping system alien.strings math.bitwise alien.syntax ;
+grouping system alien.strings math.bitwise alien.syntax
+unix.types ;
 IN: unix.statfs.macosx
 
 CONSTANT: MNT_RDONLY  HEX: 00000001
index f495f2af4e75001e18ed40bdb9ebe65246527293..456883514a377968530101ee9fd4b5861b94323d 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: alien.syntax ;
+USING: alien.syntax unix.types ;
 IN: unix.statfs.openbsd
 
 CONSTANT: MFSNAMELEN 16