mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-19 00:34:23 +00:00
10 lines
203 B
Rust
10 lines
203 B
Rust
#[cfg_attr(windows, link(name = "library.dll.lib", modifiers = "+verbatim"))]
|
|
#[cfg_attr(not(windows), link(name = "library"))]
|
|
extern "C" {
|
|
fn overflow();
|
|
}
|
|
|
|
fn main() {
|
|
unsafe { overflow() }
|
|
}
|