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