1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-30 04:27:45 +00:00

uucore: export latest libc

This commit is contained in:
Knight 2016-08-10 00:49:04 +08:00
parent ab345f133a
commit c9dde462c7
2 changed files with 2 additions and 4 deletions

View file

@ -4,8 +4,7 @@ version = "0.0.1"
authors = [] authors = []
[dependencies] [dependencies]
libc = "*" libc = { git = "https://github.com/rust-lang/libc.git" }
winapi = "*"
getopts = "*" getopts = "*"
data-encoding = "^1.1" data-encoding = "^1.1"

View file

@ -1,5 +1,4 @@
extern crate libc; pub extern crate libc;
#[cfg(windows)] extern crate winapi;
#[macro_use] #[macro_use]
mod macros; mod macros;