diff options
author | Marvin Borner | 2021-02-21 15:45:41 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-21 15:45:41 +0100 |
commit | afeb7e4f00eff33e9e1cfcb766825e7c87f5f1d1 (patch) | |
tree | 87572c38c6cfd3bf49119ecb63de2e8c3ad4fb02 /libc/inc/print.h | |
parent | 17b83714ecc713f3faebf668a3d286e531f41859 (diff) |
Activated SSE/FPU features for better performance
Diffstat (limited to 'libc/inc/print.h')
-rw-r--r-- | libc/inc/print.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/inc/print.h b/libc/inc/print.h index 3e11db7..f32873a 100644 --- a/libc/inc/print.h +++ b/libc/inc/print.h @@ -20,6 +20,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 panic(const char *format, ...); #endif #endif |