From: keni Date: Tue, 10 Jan 2023 20:55:30 +0000 (-0500) Subject: alloc.c: add missing NORETURN X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d1561f15c1e05fe7f1f5afb166aa429f25811e66;p=nethack alloc.c: add missing NORETURN --- diff --git a/src/alloc.c b/src/alloc.c index 28023cafb..6f7af2c12 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -34,7 +34,7 @@ static boolean tried_heaplog = FALSE; long *alloc(unsigned int) NONNULL; long *re_alloc(long *, unsigned int) NONNULL; -extern void panic(const char *, ...); +extern void panic(const char *, ...) NORETURN; long * alloc(unsigned int lth)