about summary refs log tree commit diff
path: root/src/libstd/os.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-10-09 10:34:27 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-10-11 06:49:18 -0700
commit8b4423b04f519b78e0e9196ae1521531c80c743b (patch)
tree713d12f4142749e7699de5c61962ee359a30ca88 /src/libstd/os.rs
parent8015f9c27ec342dbf0b28c9c0c4769d8b3bcfc9f (diff)
downloadrust-8b4423b04f519b78e0e9196ae1521531c80c743b.tar.gz
rust-8b4423b04f519b78e0e9196ae1521531c80c743b.zip
De-pub some private runtime components
This change was waiting for privacy to get sorted out, which should be true now
that #8215 has landed.

Closes #4427
Diffstat (limited to 'src/libstd/os.rs')
-rw-r--r--src/libstd/os.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/os.rs b/src/libstd/os.rs
index 4de7f32248d..e7cba0895e4 100644
--- a/src/libstd/os.rs
+++ b/src/libstd/os.rs
@@ -1185,7 +1185,7 @@ pub fn last_os_error() -> ~str {
  */
 pub fn set_exit_status(code: int) {
     use rt;
-    rt::util::set_exit_status(code);
+    rt::set_exit_status(code);
 }
 
 unsafe fn load_argc_and_argv(argc: c_int, argv: **c_char) -> ~[~str] {