mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-08 21:20:19 +02:00
Reorganize source tree and document
This commit is contained in:
parent
5fbd21a7c3
commit
e6de2fd633
63 changed files with 225 additions and 235 deletions
10
src/debug.h
Normal file
10
src/debug.h
Normal file
|
@ -0,0 +1,10 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue