summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJessica Hamilton <jessica.l.hamilton@gmail.com>2017-09-26 06:35:52 +0000
committerJessica Hamilton <jessica.l.hamilton@gmail.com>2017-09-26 06:35:52 +0000
commit0d822be88c717ee03817d518e7b81635b03deded (patch)
tree5c4c14083e6e5b96ccaa5f3661ecc4d6b8f64630
parent03ed3ff7a9dd7dc2c1236563081ea94ecb34bc4f (diff)
downloadrust-libc-0d822be88c717ee03817d518e7b81635b03deded.tar.gz
unix: remove constants moved into submodules.
-rw-r--r--src/unix/mod.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/unix/mod.rs b/src/unix/mod.rs
index f60985c4b2..cc2de9136f 100644
--- a/src/unix/mod.rs
+++ b/src/unix/mod.rs
@@ -163,17 +163,8 @@ pub const S_ISUID: ::c_int = 0x800;
pub const S_ISGID: ::c_int = 0x400;
pub const S_ISVTX: ::c_int = 0x200;
-pub const POLLIN: ::c_short = 0x1;
-pub const POLLPRI: ::c_short = 0x2;
-pub const POLLOUT: ::c_short = 0x4;
-pub const POLLERR: ::c_short = 0x8;
-pub const POLLHUP: ::c_short = 0x10;
-pub const POLLNVAL: ::c_short = 0x20;
-
pub const IF_NAMESIZE: ::size_t = 16;
-pub const RTLD_LAZY: ::c_int = 0x1;
-
pub const LOG_EMERG: ::c_int = 0;
pub const LOG_ALERT: ::c_int = 1;
pub const LOG_CRIT: ::c_int = 2;