- add simple printout debug msg

This commit is contained in:
Antoine Fraboulet 2005-12-26 21:10:59 +00:00
parent 7bc239adfc
commit 74900ca592

View file

@ -41,4 +41,10 @@
# define ASSERT(cond, msg)
#endif
#ifdef DEBUG
# define debug(x...) { fprintf(stderr,x); }
#else
# define debug(x...)
#endif
#endif