CID 273814, don't confuse coverity.

This commit is contained in:
christos 2014-03-20 17:25:23 +00:00
parent c629e629e3
commit 13ec391985
1 changed files with 4 additions and 0 deletions

View File

@ -2,8 +2,12 @@
#include <sys/cdefs.h>
#define ISC_FORMAT_PRINTF(a,b) __attribute__((__format__(__printf__,a,b)))
#define ISC_SOCKLEN_T socklen_t
#ifdef __NetBSD__
#define DE_CONST(c,v) v = __UNCONST(c)
#else
#define DE_CONST(c,v) v = ((c) ? \
strchr((const void *)(c), *(const char *)(const void *)(c)) : NULL)
#endif
#ifndef lint
#define UNUSED(a) (void)&a
#else