2015-04-06 20:49:30 +00:00
|
|
|
//@ aux-build:rustdoc-ffi.rs
|
2015-04-22 22:22:36 +00:00
|
|
|
//@ ignore-cross-compile
|
2015-02-06 10:43:45 +00:00
|
|
|
|
2015-04-06 20:49:30 +00:00
|
|
|
extern crate rustdoc_ffi as lib;
|
2015-02-06 10:43:45 +00:00
|
|
|
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has ffi/fn.foreigner.html //pre 'pub unsafe extern "C" fn foreigner(cold_as_ice: u32)'
|
2015-02-06 10:43:45 +00:00
|
|
|
pub use lib::foreigner;
|
2015-04-06 20:49:30 +00:00
|
|
|
|
|
|
|
extern "C" {
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has ffi/fn.another.html //pre 'pub unsafe extern "C" fn another(cold_as_ice: u32)'
|
2015-04-06 20:49:30 +00:00
|
|
|
pub fn another(cold_as_ice: u32);
|
|
|
|
}
|