Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
114 B
Rust
Raw Normal View History

#[link(name = "library")]
2020-09-01 17:12:52 -04:00
extern "C" {
fn overflow();
}
fn main() {
unsafe {
overflow();
}
}