commit 97b58def96d47d937d86849380d8316ddb16bed8
parent 87dfb081d69cda67c601b9ee98c3a63f46dd443e
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date: Fri, 25 Mar 2016 10:56:30 -0400
mark diag() as non-returning
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisc/lisc.h b/lisc/lisc.h
@@ -474,7 +474,7 @@ extern char debug['Z'+1];
/* util.c */
extern Typ typ[NTyp];
extern Ins insb[NIns], *curi;
-void diag(char *);
+void diag(char *) __attribute__((noreturn));
void *emalloc(size_t);
void *alloc(size_t);
void freeall(void);