We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d01b57b + 17a88cc commit eb00e57Copy full SHA for eb00e57
src/unix/aix/mod.rs
@@ -687,6 +687,8 @@ pub const RTLD_LAZY: ::c_int = 0x4;
687
pub const RTLD_NOW: ::c_int = 0x2;
688
pub const RTLD_GLOBAL: ::c_int = 0x10000;
689
pub const RTLD_LOCAL: ::c_int = 0x80000;
690
+pub const RTLD_MEMBER: ::c_int = 0x40000;
691
+pub const RTLD_NOAUTODEFER: ::c_int = 0x20000;
692
pub const RTLD_DEFAULT: *mut ::c_void = -1isize as *mut ::c_void;
693
pub const RTLD_MYSELF: *mut ::c_void = -2isize as *mut ::c_void;
694
pub const RTLD_NEXT: *mut ::c_void = -3isize as *mut ::c_void;
0 commit comments