summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-10-29 12:28:25 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-10-29 12:28:25 -0700
commitbbf73ded8da17434ebc447336a6c307fb7d1c1ba (patch)
tree71350fcb03afad9a86998ed2d122934e68fd729d /README.md
parenta9a9c70fe621dbb215dd14736318f2cafa5cba5c (diff)
downloadrust-libc-bbf73ded8da17434ebc447336a6c307fb7d1c1ba.tar.gz
Add a link to the RFC from the README
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/README.md b/README.md
index 4e678f46a8..4d87a8b969 100644
--- a/README.md
+++ b/README.md
@@ -41,6 +41,11 @@ This crate exports all underlying platform types, functions, and constants under
the crate root, so all items are accessible as `libc::foo`. The types and values
of all the exported APIs match the platform that libc is compiled for.
+More detailed information about the design of this library can be found in its
+[associated RFC][rfc].
+
+[rfc]: https://github.com/rust-lang/rfcs/blob/master/text/1291-promote-libc.md
+
## Adding an API
Want to use an API which currently isn't bound in `libc`? It's quite easy to add