diff options
| author | Juli Mallett <jmallett@FreeBSD.org> | 2002-09-18 16:13:03 +0000 |
|---|---|---|
| committer | Juli Mallett <jmallett@FreeBSD.org> | 2002-09-18 16:13:03 +0000 |
| commit | 2dbb6cf1cb59a2b30f8dc6dddd20bf110b0b49a8 (patch) | |
| tree | a7eadfee50e5871652c0862c86c068d7542d59b1 /usr.bin/make/make.h | |
| parent | ac6e585d247f5d7ac87a7565b7909fb8c107cb66 (diff) | |
Notes
Diffstat (limited to 'usr.bin/make/make.h')
| -rw-r--r-- | usr.bin/make/make.h | 5 |
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] == '/'))) |
