Lines Matching refs:debug
122 static FILE *debug;
123 #define DEBUG(f) if (debug) (void) fprintf(debug, (f))
124 #define DEBUG1(f, a) if (debug) (void) fprintf(debug, (f), (a))
125 #define DEBUG2(f, a, b) if (debug) (void) fprintf(debug, (f), (a), (b))
126 #define DEBUG3(f, a, b, c) if (debug) \
127 (void) fprintf(debug, (f), (a), (b), (c))
171 if ((debug = fopen(argv[1], "w")) == NULL)
173 setbuf(debug, NULL);