diff options
Diffstat (limited to 'src/nonstd/ASSERT_NOOVERLAP.c')
-rw-r--r-- | src/nonstd/ASSERT_NOOVERLAP.c | 9 |
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 |