aboutsummaryrefslogtreecommitdiffstats
path: root/examples/sample.source.ULP/config.h
blob: 2dda9297a492229da4da21a2fa619f71e03940dc (plain)
1
2
3
4
5
6
7
8
9
10
extern int opt_debug;

#define	ASN_DEBUG(fmt, args...)	do {		\
		if(opt_debug < 2) break;	\
		fprintf(stderr, fmt, ##args);	\
		fprintf(stderr, " (%s:%d)\n",	\
			__FILE__, __LINE__);	\
	} while(0)