rust/tests/run-make/raw-dylib-alt-calling-convention/driver.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
255 B
Rust
Raw Normal View History

extern crate raw_dylib_alt_calling_convention_test;
fn main() {
2022-07-19 12:40:26 -05:00
raw_dylib_alt_calling_convention_test::library_function(
std::env::args().skip(1).next().map_or(
false,
|s| std::str::FromStr::from_str(&s).unwrap()));
}