mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
7 lines
226 B
Rust
7 lines
226 B
Rust
#![crate_type = "rlib"]
|
|
#![feature(link_arg_attribute)]
|
|
|
|
#[link(name = "-weak_framework", kind = "link-arg", modifiers = "+verbatim")]
|
|
#[link(name = "CoreFoundation", kind = "link-arg", modifiers = "+verbatim")]
|
|
extern "C" {}
|