mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-09 23:40:29 +02:00
10 lines
175 B
C
10 lines
175 B
C
#ifndef DEBUG_H
|
|
#define DEBUG_H
|
|
|
|
#ifndef NDEBUG
|
|
#define DEBUG(...) fprintf (stderr, "DEBUG: " __VA_ARGS__)
|
|
#else
|
|
#define DEBUG(...) do { } while (0)
|
|
#endif
|
|
|
|
#endif // DEBUG_H
|