this also

This commit is contained in:
Lev Walkin 2005-04-13 13:29:10 +00:00
parent ae72b048da
commit 90d152046d
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,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)