diff options
author | roberto <roberto@FreeBSD.org> | 2008-08-22 15:58:00 +0000 |
---|---|---|
committer | roberto <roberto@FreeBSD.org> | 2008-08-22 15:58:00 +0000 |
commit | b85c7169a740b2edf0106ad59fdaa1b0160f823c (patch) | |
tree | 2b9fb7f64eacb322e95695e412c923e97ba33e88 /contrib/ntp/include/ntp_debug.h | |
parent | 1d197cfe9feac6bc29537d8e53c30b6435937b95 (diff) | |
parent | 7a6072eb585696f8856cd498c3fd194cf49f14c6 (diff) | |
download | FreeBSD-src-b85c7169a740b2edf0106ad59fdaa1b0160f823c.zip FreeBSD-src-b85c7169a740b2edf0106ad59fdaa1b0160f823c.tar.gz |
Merge ntpd & friends 4.2.4p5 from vendor/ntp/dist into head. Next commit
will update usr.sbin/ntp to match this.
MFC after: 2 weeks
Diffstat (limited to 'contrib/ntp/include/ntp_debug.h')
-rw-r--r-- | contrib/ntp/include/ntp_debug.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/contrib/ntp/include/ntp_debug.h b/contrib/ntp/include/ntp_debug.h new file mode 100644 index 0000000..376b24b --- /dev/null +++ b/contrib/ntp/include/ntp_debug.h @@ -0,0 +1,26 @@ +/* + * $Header$ + * + * $Created: Sat Aug 20 14:23:01 2005 $ + * + * Copyright (C) 2005 by Frank Kardel + */ +#ifndef NTP_DEBUG_H +#define NTP_DEBUG_H + +/* + * macros for debugging output - cut down on #ifdef pollution in the code + */ + +#ifdef DEBUG +#define DPRINTF(_lvl_, _arg_) \ + if (debug >= (_lvl_)) \ + printf _arg_; +#else +#define DPRINTF(_lvl_, _arg_) +#endif + +#endif +/* + * $Log$ + */ |