We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 003ece2 commit 6deb983Copy full SHA for 6deb983
gccjit_sys/src/dynload.rs
@@ -8,7 +8,7 @@ mod platform {
8
9
#[link(name="dl")]
10
extern "C" {
11
- fn dlopen(filename: *const i8, flag: c_int) -> *mut c_void;
+ fn dlopen(filename: *const c_char, flag: c_int) -> *mut c_void;
12
fn dlsym(handle: *mut c_void, symbol: *const i8) -> *mut c_void;
13
fn dlclose(handle: *mut c_void) -> c_int;
14
fn dlerror() -> *const c_char;
0 commit comments