summaryrefslogtreecommitdiff
path: root/debug.h
blob: f1f3c91c4313f24ffda80b4f1bf60223ff19ef04 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

#ifdef NDEBUG
#define debug(...)                                                                                 \
    do {                                                                                           \
    } while (0)
#else
#define debug(...) fprintf(stderr, __VA_ARGS__)
#endif