diff --git a/library/bootstrap/boot-stage2.factor b/library/bootstrap/boot-stage2.factor index 81dc43b46c..d409c32a23 100644 --- a/library/bootstrap/boot-stage2.factor +++ b/library/bootstrap/boot-stage2.factor @@ -20,7 +20,7 @@ parser sequences sequences-internals words ; "compile" get [ "native-io" get [ unix? [ - "/library/unix/load.factor" run-resource + "/library/io/unix/load.factor" run-resource ] when ] when diff --git a/library/unix/files.factor b/library/io/unix/files.factor similarity index 100% rename from library/unix/files.factor rename to library/io/unix/files.factor diff --git a/library/unix/io.factor b/library/io/unix/io.factor similarity index 100% rename from library/unix/io.factor rename to library/io/unix/io.factor diff --git a/library/unix/load.factor b/library/io/unix/load.factor similarity index 53% rename from library/unix/load.factor rename to library/io/unix/load.factor index d4f0849440..f47e43993b 100644 --- a/library/unix/load.factor +++ b/library/io/unix/load.factor @@ -4,10 +4,10 @@ USING: io kernel parser sequences ; "/library/unix/syscalls-" os ".factor" append3 run-resource [ - "/library/unix/syscalls.factor" - "/library/unix/io.factor" - "/library/unix/sockets.factor" - "/library/unix/files.factor" + "/library/io/unix/syscalls.factor" + "/library/io/unix/io.factor" + "/library/io/unix/sockets.factor" + "/library/io/unix/files.factor" ] [ run-resource ] each diff --git a/library/unix/sockets.factor b/library/io/unix/sockets.factor similarity index 100% rename from library/unix/sockets.factor rename to library/io/unix/sockets.factor diff --git a/library/unix/syscalls-freebsd.factor b/library/io/unix/syscalls-freebsd.factor similarity index 100% rename from library/unix/syscalls-freebsd.factor rename to library/io/unix/syscalls-freebsd.factor diff --git a/library/unix/syscalls-linux.factor b/library/io/unix/syscalls-linux.factor similarity index 100% rename from library/unix/syscalls-linux.factor rename to library/io/unix/syscalls-linux.factor diff --git a/library/unix/syscalls-macosx.factor b/library/io/unix/syscalls-macosx.factor similarity index 100% rename from library/unix/syscalls-macosx.factor rename to library/io/unix/syscalls-macosx.factor diff --git a/library/unix/syscalls-solaris.factor b/library/io/unix/syscalls-solaris.factor similarity index 100% rename from library/unix/syscalls-solaris.factor rename to library/io/unix/syscalls-solaris.factor diff --git a/library/unix/syscalls.factor b/library/io/unix/syscalls.factor similarity index 100% rename from library/unix/syscalls.factor rename to library/io/unix/syscalls.factor diff --git a/library/unix/types.factor b/library/io/unix/types.factor similarity index 100% rename from library/unix/types.factor rename to library/io/unix/types.factor