annotate src/libSAD/debug.h @ 4840:a4dd5fcc46ce

Add 5px padding for label_time
author Michal Lipski <tallica@o2.pl>
date Wed, 04 Mar 2009 15:36:58 +0100
parents 3cdee616c96d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4759
3cdee616c96d add debug.h from libSAD
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff changeset
1 #ifdef DEBUG
3cdee616c96d add debug.h from libSAD
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff changeset
2 #define DEBUG_MSG(f,x) {printf("debug: "f, x);}
3cdee616c96d add debug.h from libSAD
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff changeset
3 #else
3cdee616c96d add debug.h from libSAD
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff changeset
4 #define DEBUG_MSG(f,x) {}
3cdee616c96d add debug.h from libSAD
Andrew O. Shadoura <bugzilla@tut.by>
parents:
diff changeset
5 #endif