From f4518cf996c137e18cd70dd2d23ba9d8cfcfb526 Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Tue, 9 Dec 2014 22:55:14 +0100 Subject: passing vesa physbase to vmem and some cleanup --- lib/bool/bool.h | 8 -------- lib/int/stdint.h | 5 ----- lib/logger/log.c | 1 - lib/string/string.h | 2 +- 4 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 lib/bool/bool.h delete mode 100644 lib/int/stdint.h (limited to 'lib') diff --git a/lib/bool/bool.h b/lib/bool/bool.h deleted file mode 100644 index c2c6171..0000000 --- a/lib/bool/bool.h +++ /dev/null @@ -1,8 +0,0 @@ -/* -#include "lib/int/stdint.h" - -#define false 0 -#define true !false -#define bool uint8_t -*/ - diff --git a/lib/int/stdint.h b/lib/int/stdint.h deleted file mode 100644 index f2b975f..0000000 --- a/lib/int/stdint.h +++ /dev/null @@ -1,5 +0,0 @@ -/* -#include -*/ - - diff --git a/lib/logger/log.c b/lib/logger/log.c index 7d7bc58..9f859bc 100644 --- a/lib/logger/log.c +++ b/lib/logger/log.c @@ -7,7 +7,6 @@ #include "kernel/config.h" #include "kernel/console.h" #include "lib/printf/printf.h" -#include "lib/int/stdint.h" #include "kernel/timer.h" diff --git a/lib/string/string.h b/lib/string/string.h index 5caf0c2..a804de9 100644 --- a/lib/string/string.h +++ b/lib/string/string.h @@ -1,3 +1,3 @@ -#include "lib/bool/bool.h" +#include bool strcmp(char *str1, char *str2, int length); void* memcpy(void* restrict dstptr, const void* restrict srcptr, int size); -- cgit v1.2.3