]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - contrib/ntp/include/ntp_debug.h
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / contrib / ntp / include / ntp_debug.h
1 /*
2  * $Header$
3  *
4  * $Created: Sat Aug 20 14:23:01 2005 $
5  *
6  * Copyright (C) 2005 by Frank Kardel
7  */
8 #ifndef NTP_DEBUG_H
9 #define NTP_DEBUG_H
10
11 /*
12  * macros for debugging output - cut down on #ifdef pollution in the code
13  */
14
15 #ifdef DEBUG
16 #define DPRINTF(_lvl_, _arg_)                   \
17         if (debug >= (_lvl_))                   \
18                 printf _arg_;
19 #else
20 #define DPRINTF(_lvl_, _arg_)
21 #endif
22
23 #endif
24 /*
25  * $Log$
26  */