This commit is contained in:
Jeremy Soller
2018-03-03 08:51:14 -07:00
parent a01ff6baf8
commit d20e3f69e1
3 changed files with 8 additions and 2 deletions
+3 -1
View File
@@ -1,4 +1,6 @@
/// fcntl implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/fcntl.h.html
//! fcntl implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/fcntl.h.html
#![no_std]
extern crate libc;
+2
View File
@@ -1,3 +1,5 @@
#![no_std]
extern crate fcntl;
extern crate unistd;
+3 -1
View File
@@ -1,4 +1,6 @@
/// unistd implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/unistd.h.html
//! unistd implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/unistd.h.html
#![no_std]
extern crate libc;