blob: df5e310dd2fea55df807fda6b23cc7ac1bb38516 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
fn main() {
let ac = autocfg::new();
if ac.probe_expression("format!(\"{:e}\", 0_isize)") {
println!("cargo:rustc-cfg=has_int_exp_fmt");
}
autocfg::rerun_path("build.rs");
}
|