10 lines
84 B
Rust
10 lines
84 B
Rust
extern "C" {
|
|
fn c_func();
|
|
}
|
|
|
|
fn main() {
|
|
unsafe {
|
|
c_func();
|
|
}
|
|
}
|