2024-05-29 15:01:33 +10:00
|
|
|
#![crate_type = "cdylib"]
|
2016-12-01 15:06:33 -05:00
|
|
|
|
|
|
|
extern crate an_rlib;
|
|
|
|
|
|
|
|
// This should not be exported
|
|
|
|
pub fn public_rust_function_from_cdylib() {}
|
|
|
|
|
|
|
|
// This should be exported
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn public_c_function_from_cdylib() {
|
|
|
|
an_rlib::public_c_function_from_rlib();
|
|
|
|
}
|