Files
libmicrohttpd/doc/examples/SoundRecorder/include/debug.h
T
2006-08-18 21:41:52 +00:00

25 lines
282 B
C

/* by Luis Figueiredo (stdio@netc.pt)
*
*
* date: Sat Mar 30 14:16:05 GMT 2002
*
* DEBUG macros
*
*/
#ifndef _DEBUG_H_
#define _DEBUG_H_
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef DEBUG
#define IFDEBUG(x) x
#else
#define IFDEBUG(x)
#endif
#endif