view src/libSAD/debug.h @ 4853:4beca46cb92b

there was an 'a' here. how did that get there
author William Pitcock <nenolod@atheme.org>
date Tue, 14 Apr 2009 16:26:12 -0500
parents 3cdee616c96d
children
line wrap: on
line source

#ifdef DEBUG
#define DEBUG_MSG(f,x) {printf("debug: "f, x);}
#else
#define DEBUG_MSG(f,x) {}
#endif