diff options
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 2 |
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; } \ |