aboutsummaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2024-11-16 17:20:23 +0200
committerkartofen <mladenovnasko0@gmail.com>2024-11-16 17:20:23 +0200
commit1945dbf8345a2b59e9057d21e38c78913272bdaa (patch)
tree6f908d5feb358d5deb37e3137684208408a52186 /src/common.h
parent0dd38d08551ac2fcff53eb604f6363f37b25aef9 (diff)
cleanup and minor refactoringHEADmaster
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
index 225f217..4f580b9 100644
--- a/src/common.h
+++ b/src/common.h
@@ -47,6 +47,8 @@ static inline char *timenow(void)
#include <errno.h>
+#define NOT_IMPLEMENTED() die("Not Implemented. ABORTING")
+
#define ERR_NZ(e, r, on_fail) do { \
int r; \
if((r = e)) { on_fail; } \