externref-macro 0.2.0

Proc macro for `externref`
Documentation
1
2
3
4
5
6
7
8
use externref_macro::externref;

#[externref]
pub extern "C" fn printf(format: *const c_char, ...) {
    // Do nothing
}

fn main() {}