2015-04-06 15:49:30 -05:00
|
|
|
// aux-build:rustdoc-ffi.rs
|
2015-04-22 17:22:36 -05:00
|
|
|
// ignore-cross-compile
|
2015-02-06 04:43:45 -06:00
|
|
|
|
2015-04-06 15:49:30 -05:00
|
|
|
extern crate rustdoc_ffi as lib;
|
2015-02-06 04:43:45 -06:00
|
|
|
|
2017-05-14 18:52:17 -05:00
|
|
|
// @has ffi/fn.foreigner.html //pre 'pub unsafe extern "C" fn foreigner(cold_as_ice: u32)'
|
2015-02-06 04:43:45 -06:00
|
|
|
pub use lib::foreigner;
|
2015-04-06 15:49:30 -05:00
|
|
|
|
|
|
|
extern "C" {
|
2017-05-14 18:52:17 -05:00
|
|
|
// @has ffi/fn.another.html //pre 'pub unsafe extern "C" fn another(cold_as_ice: u32)'
|
2015-04-06 15:49:30 -05:00
|
|
|
pub fn another(cold_as_ice: u32);
|
|
|
|
}
|