Move memory handling into string, do not use compiler_builtins for memory handling

This commit is contained in:
Jeremy Soller
2018-03-27 21:28:48 -06:00
parent 79d05d7eda
commit dabd8dc6a2
8 changed files with 68 additions and 55 deletions
-1
View File
@@ -8,7 +8,6 @@ build = "build.rs"
cbindgen = { path = "../../cbindgen" }
[dependencies]
compiler_builtins = { git = "https://github.com/rust-lang-nursery/compiler-builtins.git", default-features = false, features = ["mem"] }
platform = { path = "../platform" }
va_list = { path = "../../va_list", features = ["no_std"] }
fcntl = { path = "../fcntl" }
-2
View File
@@ -1,9 +1,7 @@
//! stdio implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/stdio.h.html
#![feature(compiler_builtins_lib)]
#![no_std]
extern crate compiler_builtins;
extern crate errno;
extern crate fcntl;
extern crate platform;