diff options
author | stefan <stefan@s00.xyz> | 2023-04-07 19:02:18 -0400 |
---|---|---|
committer | stefan <stefan@s00.xyz> | 2023-04-07 19:02:18 -0400 |
commit | a1a97aa7b2b0c3d1f3b6766446d605f83de1c561 (patch) | |
tree | 445f9419aee4e0ffdb7271d84474452c7e69d225 /sys/include | |
parent | cd653dcee96a2673bf4ab5aadba0ecfaf5fe7a0f (diff) | |
download | sv-a1a97aa7b2b0c3d1f3b6766446d605f83de1c561.tar.gz |
stuff and things
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 */ |