diff options
Diffstat (limited to 'src/kernel/lib/stdio/debug.c')
-rw-r--r-- | src/kernel/lib/stdio/debug.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernel/lib/stdio/debug.c b/src/kernel/lib/stdio/debug.c index a96d73a..74eb594 100644 --- a/src/kernel/lib/stdio/debug.c +++ b/src/kernel/lib/stdio/debug.c @@ -1,9 +1,9 @@ -#include <stdarg.h> -#include <stdint.h> -#include <lib/string.h> -#include <lib/stdlib.h> #include <io/io.h> +#include <lib/stdlib.h> +#include <lib/string.h> #include <memory/alloc.h> +#include <stdarg.h> +#include <stdint.h> void serial_print(const char *data) { |