1
Fork 0

Use the correct return type for puts

This commit is contained in:
bjorn3 2020-04-17 19:33:57 +02:00
parent 9f602bf4da
commit 51d07790df
3 changed files with 3 additions and 3 deletions

View file

@ -13,7 +13,7 @@ static ALLOC: System = System;
#[link(name = "c")]
extern "C" {
fn puts(s: *const u8);
fn puts(s: *const u8) -> i32;
}
#[panic_handler]