From f31f7960bd260cb90ffdd766393d51bd85a547d1 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Fri, 14 Jul 2017 15:13:02 +0200 Subject: removed stddef.h and limits.h (come with the compiler header files) added a stub stdint.h (only sometimes comes with the compiler) added a guide on cross compiling adapted to cross compilation, for now tcc works --- src/kernel/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/kernel/console.c') diff --git a/src/kernel/console.c b/src/kernel/console.c index 8caefc8..04fb44f 100644 --- a/src/kernel/console.c +++ b/src/kernel/console.c @@ -1,7 +1,7 @@ #include "console.h" #include "string.h" -#include "stddef.h" +#include void console_init( console_t *console ) { -- cgit v1.2.3-54-g00ecf