]> icculus.org git repositories - dana/openbox.git/blob - glft/debug.c
move the defines into the header for init.c
[dana/openbox.git] / glft / debug.c
1 #include <stdio.h>
2 #include <stdarg.h>
3
4 void GlftDebug(char *a, ...)
5 {
6 #ifdef DEBUG
7     va_list vl;
8     va_start(vl, a);
9     vprintf(a, vl);
10 #endif
11 }