diff options
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/mm/kalloc.h | 4 | ||||
-rw-r--r-- | sys/include/printf.h (renamed from sys/include/kernel_earlyprintf.h) | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/sys/include/mm/kalloc.h b/sys/include/mm/kalloc.h index e99d624..10adbda 100644 --- a/sys/include/mm/kalloc.h +++ b/sys/include/mm/kalloc.h @@ -7,5 +7,9 @@ void *kzalloc(void); void kfree(void *); +void kalloc_init(void); + +void walkfree(void); + #endif /* _KALLOC_H */ diff --git a/sys/include/kernel_earlyprintf.h b/sys/include/printf.h index 051d7e5..76debc3 100644 --- a/sys/include/kernel_earlyprintf.h +++ b/sys/include/printf.h @@ -1,6 +1,7 @@ #ifndef _KPRINTF_H #define _KPRINTF_H -int kernel_earlyputs(const char *); +int puts(const char *); +void printf(const char *, ...); #endif /* _KPRINTF_H */ |