about summary refs log tree commit diff
path: root/src/libstd/libc.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-01-15 06:26:38 -0800
committerbors <bors@rust-lang.org>2014-01-15 06:26:38 -0800
commit7bebdbd96826cc70c8e39d025a64b76cd64a2ee7 (patch)
tree2a028cf2c91543d8d441624cbf24eb38e2900aa4 /src/libstd/libc.rs
parent180ac0cc07dbd8b4bbd91ed1b3ef8eaca6c87341 (diff)
parent7ca3bea5bfd15dd960e6346eebf72422b0020d6b (diff)
downloadrust-7bebdbd96826cc70c8e39d025a64b76cd64a2ee7.tar.gz
rust-7bebdbd96826cc70c8e39d025a64b76cd64a2ee7.zip
auto merge of #11561 : eddyb/rust/moar-inlines, r=pcwalton
Diffstat (limited to 'src/libstd/libc.rs')
-rw-r--r--src/libstd/libc.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/libc.rs b/src/libstd/libc.rs
index 6b54a176e89..9cf94e5a1b8 100644
--- a/src/libstd/libc.rs
+++ b/src/libstd/libc.rs
@@ -159,7 +159,7 @@ pub use libc::funcs::c95::stdio::{fread, freopen, fseek, fsetpos, ftell};
 pub use libc::funcs::c95::stdio::{fwrite, perror, puts, remove, rewind};
 pub use libc::funcs::c95::stdio::{setbuf, setvbuf, tmpfile, ungetc};
 
-pub use libc::funcs::c95::stdlib::{abort, abs, atof, atoi, calloc, exit};
+pub use libc::funcs::c95::stdlib::{abs, atof, atoi, calloc, exit};
 pub use libc::funcs::c95::stdlib::{free, getenv, labs, malloc, rand};
 pub use libc::funcs::c95::stdlib::{realloc, srand, strtod, strtol};
 pub use libc::funcs::c95::stdlib::{strtoul, system};
@@ -3226,7 +3226,6 @@ pub mod funcs {
                 pub fn malloc(size: size_t) -> *c_void;
                 pub fn realloc(p: *mut c_void, size: size_t) -> *mut c_void;
                 pub fn free(p: *c_void);
-                pub fn abort() -> !;
                 pub fn exit(status: c_int) -> !;
                 // Omitted: atexit.
                 pub fn system(s: *c_char) -> c_int;