1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-08 22:50:27 +02:00
guile/debug.h
Andy Wingo d2828975a5 Switch mark-sweep collector to mark stack
Slows down performance though!  Have to think here.
2022-03-11 11:23:58 +01:00

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