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