aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/make.h
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2002-09-18 16:13:03 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2002-09-18 16:13:03 +0000
commit2dbb6cf1cb59a2b30f8dc6dddd20bf110b0b49a8 (patch)
treea7eadfee50e5871652c0862c86c068d7542d59b1 /usr.bin/make/make.h
parentac6e585d247f5d7ac87a7565b7909fb8c107cb66 (diff)
Notes
Diffstat (limited to 'usr.bin/make/make.h')
-rw-r--r--usr.bin/make/make.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/make/make.h b/usr.bin/make/make.h
index 6976a899e85f8..ee0b34e4680c9 100644
--- a/usr.bin/make/make.h
+++ b/usr.bin/make/make.h
@@ -338,11 +338,10 @@ extern int debug;
#define CONCAT(a,b) a##b
#define DEBUG(module) (debug & CONCAT(DEBUG_,module))
-#define DEBUGF(module,fmt,args...) \
+#define DEBUGF(module,args) \
do { \
if (DEBUG(module)) { \
- fprintf(stderr, fmt, ##args); \
- fflush(stderr); \
+ Debug args ; \
} \
} while (0)
#define ISDOT(c) ((c)[0] == '.' && (((c)[1] == '\0') || ((c)[1] == '/')))