Go to file
Alex Crichton 9e97afd91f Break apart src/unix/other.rs a bit
Also sysctl isn't defined on MUSL
2015-09-13 11:16:53 -07:00
ci Use MSYS2 on appveyor 2015-09-12 23:09:04 -07:00
libc-test Break apart src/unix/other.rs a bit 2015-09-13 11:16:53 -07:00
src Break apart src/unix/other.rs a bit 2015-09-13 11:16:53 -07:00
.gitignore Add skeleton testing framework 2015-09-09 22:46:19 -07:00
.gitmodules Initial import of liblibc 2015-09-09 21:50:47 -07:00
.travis.yml Never notify on success for travis 2015-09-12 22:03:11 -07:00
appveyor.yml Use MSYS2 on appveyor 2015-09-12 23:09:04 -07:00
Cargo.toml Initial import of liblibc 2015-09-09 21:50:47 -07:00
Dockerfile Add docker file to build android image 2015-09-12 16:00:29 -07:00
LICENSE-APACHE Initial commit 2015-01-13 08:22:00 -08:00
LICENSE-MIT Initial commit 2015-01-13 08:22:00 -08:00
README.md Initial commit 2015-01-13 08:22:00 -08:00

libc

A Rust library with native bindings to the types and functions commonly found on various systems, including libc.

Build Status

Documentation

Usage

Add this to your Cargo.toml:

[dependencies]

libc = "0.1"

and this to your crate root:

extern crate libc;