diff options
author | Marvin Borner | 2021-05-15 22:36:21 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-15 22:36:21 +0200 |
commit | df5a8c5b32733ae5e2d872b1c7baa4311a9d2308 (patch) | |
tree | 460b35ad421bc74e75e942a35379621ba168c9ea /libs/libc/inc/print.h | |
parent | f97343c268b0fc19bf93d509a019f3d13c7af5a4 (diff) |
Strange fixes
I have no ideas halp
Diffstat (limited to 'libs/libc/inc/print.h')
-rw-r--r-- | libs/libc/inc/print.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libc/inc/print.h b/libs/libc/inc/print.h index 6d959c3..bc1b7b0 100644 --- a/libs/libc/inc/print.h +++ b/libs/libc/inc/print.h @@ -20,7 +20,7 @@ int viprintf(enum io_type io, const char *format, va_list ap) NONNULL; int fprintf(const char *path, const char *format, ...) NONNULL; int iprintf(enum io_type io, const char *format, ...) NONNULL; int log(const char *format, ...) NONNULL; -void err(int code, const char *format, ...) NONNULL; +NORETURN void err(int code, const char *format, ...) NONNULL; #else #include <proc.h> int print_prefix(void); |