about summary refs log tree commit diff
path: root/src/lib/std.rc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/std.rc')
-rw-r--r--src/lib/std.rc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/std.rc b/src/lib/std.rc
index 8a9ee42d0da..4efff14bb8c 100644
--- a/src/lib/std.rc
+++ b/src/lib/std.rc
@@ -42,6 +42,9 @@ auth rand.mk_rng = unsafe;
 
 // Target-OS module.
 
+// TODO: Have each OS module re-export everything from GenericOS.
+mod GenericOS;
+
 alt (target_os) {
     case ("win32") {
         mod os = "win32_os.rs";
@@ -54,6 +57,7 @@ alt (target_os) {
         mod os_fs = "posix_fs.rs";
     }
 }
+
 mod run = "run_program.rs";
 mod fs;