fn_abi
A proc attribute macro that sets the ABI/calling convention for the attributed function.
```rust
extern crate fn_abi;
extern fn hello_world() { println!("hello world!"); }
extern fn hello_world() { println!("hello world!"); } ```