]> gitweb.factorcode.org Git - factor.git/commitdiff
libc: don't use unparse which requires prettyprint.
authorJohn Benediktsson <mrjbq7@gmail.com>
Sat, 25 Oct 2014 00:09:27 +0000 (17:09 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sat, 25 Oct 2014 00:09:27 +0000 (17:09 -0700)
basis/libc/libc.factor

index db7acc7ec5e131b749bc21b5303032ee8c83dff5..b7a69cd3f1085b8a64adbd0ad159089ea06eccda 100644 (file)
@@ -4,7 +4,7 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors alien alien.c-types alien.destructors
 alien.syntax destructors destructors.private kernel math
-namespaces prettyprint sequences sets summary system vocabs ;
+namespaces sequences sets summary system vocabs ;
 IN: libc
 
 HOOK: strerror os ( errno -- str )
@@ -121,4 +121,4 @@ DESTRUCTOR: free
 DESTRUCTOR: (free)
 
 ! For libc.linux, libc.windows, libc.macosx...
-<< "libc." os unparse append require >>
+<< "libc." os name>> append require >>