Merge pull request #1 from nils-mathieu/trunk
Remove dependency on standard library
This commit is contained in:
commit
828d43342c
1
build.rs
1
build.rs
@ -6,6 +6,7 @@ use std::path::PathBuf;
|
||||
fn main() {
|
||||
let bindings = bindgen::Builder::default()
|
||||
.header("limine.h")
|
||||
.use_core()
|
||||
.generate()
|
||||
.expect("Unable to generate bindings");
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
#![no_std]
|
||||
#![allow(non_upper_case_globals)]
|
||||
#![allow(non_camel_case_types)]
|
||||
#![allow(non_snake_case)]
|
||||
|
Loading…
Reference in New Issue
Block a user