aboutsummaryrefslogtreecommitdiff
path: root/ctr-std/src/lib.rs
diff options
context:
space:
mode:
authorFenrir <[email protected]>2017-07-07 11:39:39 -0600
committerFenrir <[email protected]>2017-07-07 12:38:43 -0600
commiteec80b496b8de2ee332b4ae04fbe00c7c93525b3 (patch)
treef809316596ccf906c46c420c72fadbc568db871f /ctr-std/src/lib.rs
parentMerge pull request #30 from kentaromiura/compile_again (diff)
downloadctru-rs-eec80b496b8de2ee332b4ae04fbe00c7c93525b3.tar.xz
ctru-rs-eec80b496b8de2ee332b4ae04fbe00c7c93525b3.zip
Use libc from crates.io
The libc crate has newlib bindings now, so we don't have to maintain them in-tree anymore
Diffstat (limited to 'ctr-std/src/lib.rs')
-rw-r--r--ctr-std/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctr-std/src/lib.rs b/ctr-std/src/lib.rs
index 7a520b8..de28fc1 100644
--- a/ctr-std/src/lib.rs
+++ b/ctr-std/src/lib.rs
@@ -63,12 +63,12 @@ extern crate collections as core_collections;
extern crate alloc;
extern crate std_unicode;
extern crate alloc_system;
+extern crate libc;
// compiler-rt intrinsics
extern crate compiler_builtins;
// 3ds-specific dependencies
-extern crate ctr_libc as libc;
extern crate ctru_sys as libctru;
// The standard macros that are not built-in to the compiler.