1 /* $NetBSD: ntp_debug.h,v 1.2 2007/08/21 13:17:24 ghen Exp $ */
4 * $Header: /pub/NetBSD/misc/repositories/cvsroot/src/dist/ntp/include/ntp_debug.h,v 1.3 2009/06/13 12:02:08 kardel Exp $
6 * Created: Sat Aug 20 14:23:01 2005
8 * Copyright (C) 2005 by Frank Kardel
14 * macros for debugging output - cut down on #ifdef pollution in the code
18 #define DPRINTF(_lvl_, _arg_) \
20 if (debug >= (_lvl_)) \
24 #define DPRINTF(_lvl_, _arg_) do {} while (0)