-
Alex Crichton authored
Anyone can do it!
Alex Crichton authoredAnyone can do it!
README.md 6.54 KiB
libc
A Rust library with native bindings to the types and functions commonly found on various systems, including libc.
Usage
First, add the following to your Cargo.toml
:
[dependencies]
libc = "0.2"
Next, add this to your crate root:
extern crate libc;
Currently libc by default links to the standard library, but if you would
instead like to use libc in a #![no_std]
situation or crate you can request
this via: