f8ae3cdcaa
This patch ensures that the multiple extern definitions of `free` in the run-pass tests have the same declaration, working around #7352.
7 lines
62 B
Rust
7 lines
62 B
Rust
extern {
|
|
pub unsafe fn free(p: *u8);
|
|
}
|
|
|
|
pub fn main() {
|
|
}
|