From d4732a5a399a4d21300af41378b205a3e6aa907a Mon Sep 17 00:00:00 2001 From: turret Date: Sat, 2 Dec 2023 22:00:50 -0600 Subject: util: remove libsl `die` potential copyright violations?? doesnt matter anyway since i'm going to implement my own panic soon which should address the downfalls of a generic `die` --- include/util.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'include/util.h') diff --git a/include/util.h b/include/util.h index 97435be..bad4a33 100644 --- a/include/util.h +++ b/include/util.h @@ -1,5 +1,3 @@ #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) -void die(const char *fmt, ...); - #define writeputs(str) write(STDOUT_FILENO, str, strlen(str)); -- cgit v1.2.3