alloc.c: add missing NORETURN

This commit is contained in:
keni
2023-01-10 15:55:30 -05:00
parent 4af086be73
commit d1561f15c1

View File

@@ -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)