]> gitweb.factorcode.org Git - factor.git/commitdiff
fix load error
authorDoug Coleman <doug.coleman@gmail.com>
Mon, 6 Oct 2008 22:34:58 +0000 (17:34 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Mon, 6 Oct 2008 22:34:58 +0000 (17:34 -0500)
basis/structs/structs.factor
basis/unix/time/time.factor

index 51ac517af31b365b09e551dd7e4940f8dc978a6a..6aef757eb491cf2c6cbc49140b8962c76b8e4ea9 100644 (file)
@@ -1,4 +1,4 @@
-USING: alien.c-types alien.syntax kernel math ;
+USING: alien.c-types alien.syntax kernel math unix.types ;
 IN: structs
 
 C-STRUCT: timeval
index 26b42ddfe7e75d6022d590d4befba26dc3997096..67611ae193bfb7bd97e83b14356d325f13731cae 100644 (file)
@@ -1,8 +1,8 @@
-USING: kernel alien.syntax alien.c-types math ;
+! Copyright (C) 2008 Doug Coleman.
+! See http://factorcode.org/license.txt for BSD license.
+USING: kernel alien.syntax alien.c-types math unix.types ;
 IN: unix.time
 
-TYPEDEF: uint time_t
-
 C-STRUCT: tm
     { "int" "sec" }    ! Seconds: 0-59 (K&R says 0-61?)
     { "int" "min" }    ! Minutes: 0-59