# HG changeset patch # User Andrew O. Shadoura # Date 1218102083 -10800 # Node ID 3cdee616c96d42ab4b10e6076d312da5f7ad874d # Parent 8de129d0823898ed1adb69e1c226278c087a1798 add debug.h from libSAD diff -r 8de129d08238 -r 3cdee616c96d src/libSAD/debug.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/libSAD/debug.h Thu Aug 07 12:41:23 2008 +0300 @@ -0,0 +1,5 @@ +#ifdef DEBUG +#define DEBUG_MSG(f,x) {printf("debug: "f, x);} +#else +#define DEBUG_MSG(f,x) {} +#endif