aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README1
-rw-r--r--include/macros.h2
2 files changed, 0 insertions, 3 deletions
diff --git a/README b/README
index a158aac..51585b3 100644
--- a/README
+++ b/README
@@ -78,7 +78,6 @@ FEATURES:
• Functions for printing diagnostics and optionally crashing with
strerror() support
• macros.h
- • TODO()
• MIN()/MAX()/CLAMP()
• Better assertion macro
• More readable strcmp()/memcmp()/etc. wrappers for equality checking
diff --git a/include/macros.h b/include/macros.h
index 61f7ca3..4a8108e 100644
--- a/include/macros.h
+++ b/include/macros.h
@@ -11,8 +11,6 @@
#define streq(...) (!strcmp(__VA_ARGS__))
#define u8eq(...) (!u8cmp(__VA_ARGS__))
-#define TODO(s) err("%s:%s:%d: todo: %s", __FILE__, __func__, __LINE__, s)
-
#ifdef NDEBUG
# include <stddef.h>
# define ASSUME(p) ((p) ? (void)0 : unreachable())