]> git.sur5r.net Git - openldap/blob - contrib/gtk-tool/utils.cc
Add AC_CANONICAL_SYSTEM to generate $target
[openldap] / contrib / gtk-tool / utils.cc
1 #include <stdio.h>
2 #include <stdarg.h>
3
4 int debug(const char *format,...) {
5 #ifdef DEBUG
6         va_list args;
7         int ret;
8         va_start(args, format);
9         ret = vprintf(format, args);
10         va_end(args);
11         return ret;
12 #endif
13 }