summaryrefslogtreecommitdiff
path: root/kernel/log.h
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-11-10 15:47:08 +0100
committerAnton Kling <anton@kling.gg>2023-11-10 15:47:08 +0100
commit9a1f977e39d8e9fcb6a9cb2a612f4743e802221d (patch)
tree1fc53f6e80eb40d24274f2f8967d584b88c6d664 /kernel/log.h
parent0cb4afef6da5488a128e5aaece435e9aa5f5797e (diff)
Kernel Style: Change uint*_t -> u*
Diffstat (limited to 'kernel/log.h')
-rw-r--r--kernel/log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/log.h b/kernel/log.h
index fe499bc..10164d0 100644
--- a/kernel/log.h
+++ b/kernel/log.h
@@ -1,5 +1,5 @@
#include <stdio.h>
-#include <stdint.h>
+#include <typedefs.h>
#define LOG_NOTE 3
#define LOG_WARN 2
@@ -7,4 +7,4 @@
#define LOG_SUCCESS 0
void klog(char *str, int code);
-void dump_backtrace(uint32_t max_frames);
+void dump_backtrace(u32 max_frames);