summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Lankes <slankes@eonerc.rwth-aachen.de>2019-03-03 01:34:02 +0100
committerStefan Lankes <slankes@eonerc.rwth-aachen.de>2019-03-03 01:34:02 +0100
commit52bb1524443f7fe7152b86b9ef85284a586bd600 (patch)
treed824d8f527626acaca49d8d6a1bac85d0dc18f91
parent682b8af2867288f27f181dd20720419b537ef502 (diff)
downloadrust-libc-52bb1524443f7fe7152b86b9ef85284a586bd600.tar.gz
allowd unused types ggid_t and uuid_t
-rw-r--r--src/unix/hermit/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/unix/hermit/mod.rs b/src/unix/hermit/mod.rs
index 0c372f1212..f19bba4aa0 100644
--- a/src/unix/hermit/mod.rs
+++ b/src/unix/hermit/mod.rs
@@ -19,7 +19,9 @@
pub type c_long = i64;
pub type c_ulong = u64;
+#[allow(unused)]
pub type uid_t = u16;
+#[allow(unused)]
pub type gid_t = u16;
pub type speed_t = ::c_uint;
pub type mode_t = u32;