mirror of
https://github.com/lbr77/SideImpactor.git
synced 2026-05-06 11:14:01 -04:00
7 lines
155 B
Rust
7 lines
155 B
Rust
fn main() {
|
|
cc::Build::new()
|
|
.file("src/c_shim/vsnprintf_shim.c")
|
|
.flag_if_supported("-std=c99")
|
|
.compile("vsnprintf_shim");
|
|
}
|