Skip to content

Commit

Permalink
properly modify the type with ::
Browse files Browse the repository at this point in the history
  • Loading branch information
shyouhei committed Aug 21, 2023
1 parent 837159c commit ff6a0c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/bsd/apple/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4189,7 +4189,7 @@ pub const RTLD_FIRST: ::c_int = 0x100;
pub const RTLD_NODELETE: ::c_int = 0x80;
pub const RTLD_NOLOAD: ::c_int = 0x10;
pub const RTLD_GLOBAL: ::c_int = 0x8;
pub const RTLD_MAIN_ONLY: *mut ::c_void = -5isize as *mut c_void;
pub const RTLD_MAIN_ONLY: *mut ::c_void = -5isize as *mut ::c_void;

pub const _WSTOPPED: ::c_int = 0o177;

Expand Down

0 comments on commit ff6a0c6

Please sign in to comment.