diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-28 14:17:14 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-28 14:17:14 -0400 |
| commit | 2666f19b16c61d2cf6b9a319b74f286d64291b6c (patch) | |
| tree | 56f9c97435d5f81697725afafc54a44ac7d6c181 /src/stdlib/stdlib.c | |
| parent | e861515053bc3ec8624abb2856a1f809f13a51d9 (diff) | |
Signal handler is _Noreturn
Diffstat (limited to 'src/stdlib/stdlib.c')
| -rw-r--r-- | src/stdlib/stdlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/stdlib.c b/src/stdlib/stdlib.c index 97c7b219..8e652aa5 100644 --- a/src/stdlib/stdlib.c +++ b/src/stdlib/stdlib.c @@ -44,7 +44,7 @@ static ssize_t getrandom(void *buf, size_t buflen, unsigned int flags) { public bool USE_COLOR; -static void signal_handler(int sig, siginfo_t *, void *) +static _Noreturn void signal_handler(int sig, siginfo_t *, void *) { assert(sig == SIGILL); fflush(stdout); |
