summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNik Klassen <me@nikklassen.ca>2016-06-15 14:26:27 -0400
committerNik Klassen <me@nikklassen.ca>2016-06-15 14:26:27 -0400
commitee3e49f8c5385fc5427f8c2ded44b8e042e7e1e3 (patch)
treed640b9bf685cc75704f451fab6f425ef3153e921
parentc9e0d0e3b023cfd5b020f219d5f70e20968c1d6c (diff)
downloadrust-libc-ee3e49f8c5385fc5427f8c2ded44b8e042e7e1e3.tar.gz
Remove tab characters
-rw-r--r--src/unix/notbsd/mod.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/unix/notbsd/mod.rs b/src/unix/notbsd/mod.rs
index 12bdb46d67..8119beea00 100644
--- a/src/unix/notbsd/mod.rs
+++ b/src/unix/notbsd/mod.rs
@@ -627,15 +627,15 @@ pub const CLONE_NEWPID: ::c_int = 0x20000000;
pub const CLONE_NEWNET: ::c_int = 0x40000000;
pub const CLONE_IO: ::c_int = 0x80000000;
-pub const WNOHANG: ::c_int = 1;
+pub const WNOHANG: ::c_int = 0x00000001;
pub const WUNTRACED: ::c_int = 0x00000002;
pub const WSTOPPED: ::c_int = WUNTRACED;
-pub const WEXITED: ::c_int = 0x00000004;
+pub const WEXITED: ::c_int = 0x00000004;
pub const WCONTINUED: ::c_int = 0x00000008;
-pub const WNOWAIT: ::c_int = 0x01000000;
+pub const WNOWAIT: ::c_int = 0x01000000;
pub const __WNOTHREAD: ::c_int = 0x20000000;
-pub const __WALL: ::c_int = 0x40000000;
+pub const __WALL: ::c_int = 0x40000000;
pub const __WCLONE: ::c_int = 0x80000000;
pub const SPLICE_F_MOVE: ::c_uint = 0x01;