We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb2f0bb commit f6e32a7Copy full SHA for f6e32a7
src/unix/bsd/mod.rs
@@ -290,6 +290,7 @@ pub const NOFLSH: ::tcflag_t = 0x80000000;
290
pub const WNOHANG: ::c_int = 1;
291
292
pub const RTLD_NOW: ::c_int = 0x2;
293
+pub const RTLD_DEFAULT: *mut ::c_void = (!0usize + 1) as *mut ::c_void;
294
295
f! {
296
pub fn FD_CLR(fd: ::c_int, set: *mut fd_set) -> () {
src/unix/notbsd/android/mod.rs
@@ -550,6 +550,7 @@ pub const TIOCCONS: ::c_int = 0x541D;
550
pub const RTLD_GLOBAL: ::c_int = 0x2;
551
pub const RTLD_NOLOAD: ::c_int = 0x4;
552
pub const RTLD_NOW: ::c_int = 0;
553
+pub const RTLD_DEFAULT: *mut ::c_void = !0usize as *mut ::c_void;
554
555
556
pub fn sigemptyset(set: *mut sigset_t) -> ::c_int {
0 commit comments