summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Parker-Shemilt <palfrey@tevp.net>2018-11-21 00:02:17 +0000
committerTom Parker-Shemilt <palfrey@tevp.net>2018-11-21 00:02:17 +0000
commitb81bb4a776c80db10b4b676f521f7b7a22b21e60 (patch)
tree111e102efd702943800c1729fd119c6c664ac6f1
parent9c6714e54ddc1477c2b3bac79ca7c95df1093110 (diff)
downloadrust-libc-b81bb4a776c80db10b4b676f521f7b7a22b21e60.tar.gz
Fix missing imports for unix module
-rw-r--r--src/unix/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/unix/mod.rs b/src/unix/mod.rs
index b7bcac1574..15a6a26844 100644
--- a/src/unix/mod.rs
+++ b/src/unix/mod.rs
@@ -4,6 +4,7 @@
//! according to the platform in question.
use dox::Option;
+use {FILE, ssize_t, size_t}; // from libc parent
pub type pid_t = i32;
pub type uid_t = u32;