summaryrefslogtreecommitdiff
path: root/debug.h
blob: c19151a5f456cbfc1d144e0f98944d25508f9bf3 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef DEBUG_H
#define DEBUG_H

#ifdef DEBUG
#define debug(...) printf(__VA_ARGS__)
#else
#define debug(...)
#endif

#endif /* DEBUG_H */