00001 00012 #ifndef OPD_PRINTF_H 00013 #define OPD_PRINTF_H 00014 00018 extern int vsfile; 00020 extern int vsamples; 00022 extern int varcs; 00024 extern int vmodule; 00026 extern int vext; 00028 extern int vmisc; 00029 00030 #define verbprintf(x, args...) \ 00031 do { \ 00032 /* look like fragile but we must catch verbrintf("%s", "") */ \ 00033 if (x == 1) \ 00034 printf(args); \ 00035 } while (0) 00036 00037 #endif /* OPD_PRINTF_H */