diff options
author | Daniel Mueller <deso@posteo.net> | 2017-05-29 14:07:12 -0700 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2017-05-29 14:07:12 -0700 |
commit | 684c4574c09a6f2cc5a208e4505e9306602b4abc (patch) | |
tree | daaac715140748c82f801f2e4047c57780689bc0 /libc/src/unix/bsd/mod.rs | |
parent | 436915453f7474117234aa0cedab6f97b3b3575f (diff) | |
download | nitrocli-684c4574c09a6f2cc5a208e4505e9306602b4abc.tar.gz nitrocli-684c4574c09a6f2cc5a208e4505e9306602b4abc.tar.bz2 |
Update libc crate to 0.2.23
The 'libc' create got a couple of updates. This change imports the new
code and bumps the version to use.
Import subrepo libc/:libc at 7db3fd570dfb41a38fb17116e93679307178103a
Diffstat (limited to 'libc/src/unix/bsd/mod.rs')
-rw-r--r-- | libc/src/unix/bsd/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/src/unix/bsd/mod.rs b/libc/src/unix/bsd/mod.rs index 69c7138..96b0f22 100644 --- a/libc/src/unix/bsd/mod.rs +++ b/libc/src/unix/bsd/mod.rs @@ -275,7 +275,9 @@ pub const WNOHANG: ::c_int = 0x00000001; pub const WUNTRACED: ::c_int = 0x00000002; pub const RTLD_NOW: ::c_int = 0x2; +pub const RTLD_NEXT: *mut ::c_void = -1isize as *mut ::c_void; pub const RTLD_DEFAULT: *mut ::c_void = -2isize as *mut ::c_void; +pub const RTLD_SELF: *mut ::c_void = -3isize as *mut ::c_void; pub const LOG_CRON: ::c_int = 9 << 3; pub const LOG_AUTHPRIV: ::c_int = 10 << 3; |