diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-02-13 14:22:33 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-02-13 14:22:33 +0100 |
commit | 858ab8e7a73a6af670d3cf842c149412da0e5959 (patch) | |
tree | d623c97eb6601cb337d4c671c1068aff53a55297 | |
parent | 24460a6ede0ffcdecd7e2b8a8f8beff3a285f2e8 (diff) |
Simplify
-rw-r--r-- | src/common/cerr.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/cerr.h b/src/common/cerr.h index de58b1d..869c9e2 100644 --- a/src/common/cerr.h +++ b/src/common/cerr.h @@ -3,9 +3,7 @@ #include <stddef.h> -/* clang-format off */ - -[[gnu::nonnull]] void cerrinit(const char *); +void cerrinit(const char *); [[noreturn, gnu::nonnull, gnu::format(printf, 1, 2)]] void die(const char *, ...); |