f7617c1cd4
- Implement link-arg as an attribute - Apply suggestions from review - Co-authored-by: Vadim Petrochenkov <vadim.petrochenkov@gmail.com> - Add unstable book entry
10 lines
83 B
Rust
10 lines
83 B
Rust
extern "C" {
|
|
pub fn foo();
|
|
}
|
|
|
|
pub fn f() {
|
|
unsafe {
|
|
foo();
|
|
}
|
|
}
|