]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - contrib/ntp/include/ntp_debug.h
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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  */