diff options
Diffstat (limited to 'src/kernel/lib')
-rw-r--r-- | src/kernel/lib/stdio/debug.c | 2 | ||||
-rw-r--r-- | src/kernel/lib/stdio/vprintf.c | 2 | ||||
-rw-r--r-- | src/kernel/lib/stdlib/htoa.c | 2 | ||||
-rw-r--r-- | src/kernel/lib/stdlib/itoa.c | 2 | ||||
-rw-r--r-- | src/kernel/lib/string/strdup.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/kernel/lib/stdio/debug.c b/src/kernel/lib/stdio/debug.c index f670588..cd042f4 100644 --- a/src/kernel/lib/stdio/debug.c +++ b/src/kernel/lib/stdio/debug.c @@ -3,7 +3,7 @@ #include <kernel/lib/string.h> #include <kernel/lib/stdlib.h> #include <kernel/io/io.h> -#include <kernel/memory/kheap.h> +#include <kernel/memory/alloc.h> void _write_serial(const char *data) { diff --git a/src/kernel/lib/stdio/vprintf.c b/src/kernel/lib/stdio/vprintf.c index 72f3917..af8e47f 100644 --- a/src/kernel/lib/stdio/vprintf.c +++ b/src/kernel/lib/stdio/vprintf.c @@ -3,7 +3,7 @@ #include <kernel/lib/stdio.h> #include <kernel/lib/string.h> #include <kernel/lib/stdlib.h> -#include <kernel/memory/kheap.h> +#include <kernel/memory/alloc.h> void _writes(const char *data) { diff --git a/src/kernel/lib/stdlib/htoa.c b/src/kernel/lib/stdlib/htoa.c index ccb01f1..49ca703 100644 --- a/src/kernel/lib/stdlib/htoa.c +++ b/src/kernel/lib/stdlib/htoa.c @@ -1,6 +1,6 @@ #include <stdint.h> #include <kernel/lib/string.h> -#include <kernel/memory/kheap.h> +#include <kernel/memory/alloc.h> static const char HTOA_TABLE[] = "0123456789ABCDEF"; diff --git a/src/kernel/lib/stdlib/itoa.c b/src/kernel/lib/stdlib/itoa.c index ea03aa2..dec75bf 100644 --- a/src/kernel/lib/stdlib/itoa.c +++ b/src/kernel/lib/stdlib/itoa.c @@ -1,7 +1,7 @@ #include <kernel/lib/math.h> #include <stdint.h> #include <kernel/lib/string.h> -#include <kernel/memory/kheap.h> +#include <kernel/memory/alloc.h> #include <kernel/memory/paging.h> static const char ITOA_TABLE[] = "0123456789"; diff --git a/src/kernel/lib/string/strdup.c b/src/kernel/lib/string/strdup.c index 7ddbf74..e59dff4 100644 --- a/src/kernel/lib/string/strdup.c +++ b/src/kernel/lib/string/strdup.c @@ -1,5 +1,5 @@ #include <kernel/lib/string.h> -#include <kernel/memory/kheap.h> +#include <kernel/memory/alloc.h> char *strdup(const char *orig) { |