10 lines
98 B
Rust

extern "C" {
fn udev_hwdb_new();
}
fn main() {
unsafe {
udev_hwdb_new();
}
}