Changed the C library to properly be the default library.

This commit is contained in:
2017-03-01 19:16:54 -05:00
parent 89e37b017b
commit 6e350daf26
3 changed files with 9 additions and 14 deletions

View File

@ -9,12 +9,7 @@ at the 'C' binding level.
### Standard C Library ###
This is the default feature set. Or you can add:
```
default-features = false
features = ["c_lib"]
```
This is the default feature set.
It will provide a link to the 'C' standard library. This will make it so
that your code is executable and can call functions and use structures from
@ -44,8 +39,8 @@ functions that Rust requires for LLVM. These are:
* memcpy
* memmove
* memset
* memcmp
* memset
### Weak ###