From ed84017353c6fc9421b223ff6ec62f8d881d8098 Mon Sep 17 00:00:00 2001 From: Aleksa Vučković Date: Mon, 17 Jan 2022 22:00:14 +0100 Subject: Fixing $(WARNING)s & explicitly declaring function prototypes --- src/include/asm.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/include/asm.h') diff --git a/src/include/asm.h b/src/include/asm.h index 9f2a9e6..e57c35b 100644 --- a/src/include/asm.h +++ b/src/include/asm.h @@ -1,9 +1,9 @@ -#ifndef ASM_H -#define ASM_H +#ifndef SOURCE_ASM_H +#define SOURCE_ASM_H #include extern uint8_t ioport_in(uint8_t port); -extern void ioport_out(uint8_t port, char data); +extern void ioport_out(uint8_t port, int data); #endif -- cgit v1.2.3