diff options
author | Marvin Borner | 2021-02-26 14:51:13 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-26 14:51:13 +0100 |
commit | 0f00932955521c3c2fb8140176ab72f22172c298 (patch) | |
tree | 99561c0254d14c0c3536f900ee83b0341a5c8a1b /libc/inc | |
parent | dec16faf32e75d613e20cac175b8a0c2d3612b94 (diff) |
Started UBSan and stack-smashing check support
Diffstat (limited to 'libc/inc')
-rw-r--r-- | libc/inc/print.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/inc/print.h b/libc/inc/print.h index f32873a..90a715c 100644 --- a/libc/inc/print.h +++ b/libc/inc/print.h @@ -1,5 +1,4 @@ // MIT License, Copyright (c) 2020 Marvin Borner -// I may (re)move this in the future // TODO #ifndef PRINT_H #define PRINT_H @@ -11,6 +10,7 @@ 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, ...); #ifdef userspace int vfprintf(const char *path, const char *format, va_list ap); @@ -20,7 +20,6 @@ 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 panic(const char *format, ...); #endif #endif |