about summary refs log tree commit diff
path: root/src/libstd/os.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-09-18 11:46:37 -0700
committerbors <bors@rust-lang.org>2013-09-18 11:46:37 -0700
commitd2b0b11aebfe3167bf41f7c6c31cf7b1e396efe7 (patch)
tree3d430bf1ac33065e8c56760043ed5deae241d462 /src/libstd/os.rs
parentb43ee6cd2eab723e4d3fd4f851c2929087e430b3 (diff)
parent817576ee7001244da68a4ee315ebdc1163d4e648 (diff)
downloadrust-d2b0b11aebfe3167bf41f7c6c31cf7b1e396efe7.tar.gz
rust-d2b0b11aebfe3167bf41f7c6c31cf7b1e396efe7.zip
auto merge of #9296 : alexcrichton/rust/snapshots, r=cmr
huzzah!
Diffstat (limited to 'src/libstd/os.rs')
-rw-r--r--src/libstd/os.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/libstd/os.rs b/src/libstd/os.rs
index 6db53370a59..1dc1d1d6776 100644
--- a/src/libstd/os.rs
+++ b/src/libstd/os.rs
@@ -148,18 +148,6 @@ pub mod win32 {
     }
 }
 
-#[cfg(stage0)]
-mod macro_hack {
-#[macro_escape];
-macro_rules! externfn(
-    (fn $name:ident ()) => (
-        extern {
-            fn $name();
-        }
-    )
-)
-}
-
 /*
 Accessing environment variables is not generally threadsafe.
 Serialize access through a global lock.