make the 2 panic declarations fully match

This commit is contained in:
keni
2023-01-10 16:55:35 -05:00
parent d1561f15c1
commit 3f3c581f65

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 *, ...) NORETURN;
ATTRNORETURN extern void panic(const char *, ...) PRINTF_F(1, 2) NORETURN;
long *
alloc(unsigned int lth)