The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
328 B
17 lines
328 B
2 years ago
|
// SPDX-license-identifer: Apache-2.0
|
||
|
// Copyright © 2021 Intel Corporation
|
||
|
|
||
|
#![allow(non_upper_case_globals)]
|
||
|
#![allow(non_camel_case_types)]
|
||
|
#![allow(non_snake_case)]
|
||
|
|
||
|
include!("internal_dep.rs");
|
||
|
|
||
|
use std::convert::TryInto;
|
||
|
|
||
|
fn main() {
|
||
|
unsafe {
|
||
|
std::process::exit(add64(0, 0).try_into().unwrap_or(5));
|
||
|
};
|
||
|
}
|