summaryrefslogtreecommitdiff
path: root/src/nonstd/ASSERT_NOOVERLAP.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nonstd/ASSERT_NOOVERLAP.c')
-rw-r--r--src/nonstd/ASSERT_NOOVERLAP.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/nonstd/ASSERT_NOOVERLAP.c b/src/nonstd/ASSERT_NOOVERLAP.c
new file mode 100644
index 00000000..5157c6d3
--- /dev/null
+++ b/src/nonstd/ASSERT_NOOVERLAP.c
@@ -0,0 +1,9 @@
+#include <nonstd/assert.h>
+
+#ifndef NDEBUG
+#define ASSERT_NOOVERLAP(x, y, s) do { \
+ /* TODO */ \
+ } while (0)
+#else
+#define ASSERT_NOOVERLAP(x, y, s)
+#endif