diff options
author | stefan <stefan@s00.xyz> | 2023-04-15 05:02:02 +0000 |
---|---|---|
committer | stefan <stefan@s00.xyz> | 2023-04-15 05:02:02 +0000 |
commit | af1ce4b2e637ceb418ea72d51c49a3eee276a938 (patch) | |
tree | 4d6a33644f8489e4f582f6e320bd6581b94fb642 /sys/include/printf.h | |
parent | 8cceb31dcaf4641d43f324fa3301b37859ebfade (diff) | |
download | sv-af1ce4b2e637ceb418ea72d51c49a3eee276a938.tar.gz |
added multiprocessor support
Diffstat (limited to 'sys/include/printf.h')
-rw-r--r-- | sys/include/printf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/printf.h b/sys/include/printf.h index 76debc3..fd9a092 100644 --- a/sys/include/printf.h +++ b/sys/include/printf.h @@ -2,6 +2,7 @@ #define _KPRINTF_H int puts(const char *); +void printf_init(void); void printf(const char *, ...); #endif /* _KPRINTF_H */ |