2021-06-08 13:56:06 -07:00
|
|
|
extern crate raw_dylib_alt_calling_convention_test;
|
|
|
|
|
|
|
|
fn main() {
|
2022-07-19 10:40:26 -07:00
|
|
|
raw_dylib_alt_calling_convention_test::library_function(
|
2024-05-29 15:01:33 +10:00
|
|
|
std::env::args().skip(1).next().map_or(false, |s| std::str::FromStr::from_str(&s).unwrap()),
|
|
|
|
);
|
2021-06-08 13:56:06 -07:00
|
|
|
}
|