diff options
author | Marvin Borner | 2021-03-12 16:07:45 +0100 |
---|---|---|
committer | Marvin Borner | 2021-03-12 16:07:45 +0100 |
commit | f1751c121d48f2d8936c72bdc347777d1e7402d9 (patch) | |
tree | 399c08a59756d8980aad6c451e2b0e4c97b3911f /libc/inc/print.h | |
parent | 99b674a9e8d78b12188cc0280b990ec50de109d8 (diff) |
Let's gooo!
Diffstat (limited to 'libc/inc/print.h')
-rw-r--r-- | libc/inc/print.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/inc/print.h b/libc/inc/print.h index 110ba4c..58b5dc6 100644 --- a/libc/inc/print.h +++ b/libc/inc/print.h @@ -4,13 +4,14 @@ #define PRINT_H #include "arg.h" +#include <def.h> int printf(const char *format, ...); int vprintf(const char *format, va_list ap); int sprintf(char *str, const char *format, ...); int vsprintf(char *str, const char *format, va_list ap); int print(const char *str); -void panic(const char *format, ...); +NORETURN void panic(const char *format, ...); #ifdef userspace int vfprintf(const char *path, const char *format, va_list ap); |