File: debug.h

package info (click to toggle)
mrproject 0.5.1-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 5,136 kB
  • ctags: 4,114
  • sloc: ansic: 40,041; sh: 7,059; makefile: 1,107; yacc: 318; python: 111
file content (9 lines) | stat: -rw-r--r-- 164 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#define DEBUG_ENABLED 0

#if (DEBUG_ENABLED != 0 && DEBUG != 0)
# define d(__x) __x
#else
# define d(__x)
#endif

#define TRACE() d(g_print ("%s\n", __FUNCTION__))