diff options
Diffstat (limited to 'libc/inc/print.h')
-rw-r--r-- | libc/inc/print.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/inc/print.h b/libc/inc/print.h index 90a715c..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); @@ -20,6 +21,7 @@ int err(int code, const char *format, ...); #else #include <proc.h> int print_app(enum stream_defaults id, const char *proc_name, const char *str); +void print_trace(u32 count); #endif #endif |