Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
run-make
/
sanitizer-cdylib-link
/
program.rs
blob: 1026c7f89ba9f4c80bb69814178741045d16e048 [
file
] [
log
] [
blame
] [
edit
]
#[
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
()
}
}