diff options
author | Marvin Borner | 2021-05-20 20:41:24 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-20 20:41:24 +0200 |
commit | 298aaf63f15350e6248d5a96e8c6a63b0ec93e0f (patch) | |
tree | 952331f841b4d02d0b7189da716648df5cdb4d8e /libs/libc/print.c | |
parent | b22346a9b830b642e684e13cf4946d8ef8d8e1ca (diff) |
Major restructuring
Diffstat (limited to 'libs/libc/print.c')
-rw-r--r-- | libs/libc/print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/libc/print.c b/libs/libc/print.c index 463fef6..46483cd 100644 --- a/libs/libc/print.c +++ b/libs/libc/print.c @@ -187,10 +187,10 @@ int print(const char *str) // The kernel prints everything into the serial console -#include <cpu.h> +#include <drivers/cpu.h> #include <mm.h> #include <proc.h> -#include <serial.h> +#include <drivers/serial.h> static void print_kernel(const char *str) { |