You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/* -*- coding: utf-8 -*-
* ---------------------------------------------------------------------- * Copyright © 2010-2012, RedJack, LLC. * All rights reserved. * * Please see the LICENSE.txt file in this distribution for license * details. * ---------------------------------------------------------------------- */
#ifndef IPSET_LOGGING_H
#define IPSET_LOGGING_H
#if !defined(IPSET_DEBUG)
#define IPSET_DEBUG 0
#endif
#if IPSET_DEBUG
#include <stdio.h>
#define DEBUG(...) \
do { \ fprintf(stderr, __VA_ARGS__); \ fprintf(stderr, "\n"); \ } while (0) #else
#define DEBUG(...) /* no debug messages */
#endif
#endif /* IPSET_LOGGING_H */
|