]> gitweb.factorcode.org Git - factor.git/commitdiff
prélude to a haiku
authorJoe Groff <arcata@gmail.com>
Sat, 28 Feb 2009 21:01:28 +0000 (15:01 -0600)
committerJoe Groff <arcata@gmail.com>
Sat, 28 Feb 2009 21:01:28 +0000 (15:01 -0600)
core/system/system.factor

index 2d8ed1b657fb085a9f92d362b6ba627cf55c5fac..8f587d28c2ad6d20d22d68ea086928f6ddadf764 100644 (file)
@@ -25,9 +25,11 @@ SINGLETON: solaris
 SINGLETON: macosx
 SINGLETON: linux
 
+SINGLETON: haiku
+
 UNION: bsd freebsd netbsd openbsd macosx ;
 
-UNION: unix bsd solaris linux ;
+UNION: unix bsd solaris linux haiku ;
 
 : os ( -- class ) \ os get-global ; foldable
 
@@ -51,6 +53,7 @@ UNION: unix bsd solaris linux ;
         { "solaris" solaris }
         { "macosx" macosx }
         { "linux" linux }
+        { "haiku" haiku }
     } at ;
 
 PRIVATE>