diff options
| author | Ronald Kinard <[email protected]> | 2017-07-10 10:03:38 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-07-10 10:03:38 -0500 |
| commit | 9ecf14ee0814a5fb7fe24b2222347b72c9c81189 (patch) | |
| tree | b13939b2c16939c4aa1f827f1aeb736efeb4e60a /ctr-std/src/lib.rs | |
| parent | Merge pull request #30 from kentaromiura/compile_again (diff) | |
| parent | Update README (diff) | |
| download | ctru-rs-9ecf14ee0814a5fb7fe24b2222347b72c9c81189.tar.xz ctru-rs-9ecf14ee0814a5fb7fe24b2222347b72c9c81189.zip | |
Merge pull request #32 from FenrirWolf/libc-update
Remove `ctr-libc`, use upstream `libc` from crates.io
Diffstat (limited to 'ctr-std/src/lib.rs')
| -rw-r--r-- | ctr-std/src/lib.rs | 2 |
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. |