reactos/rosapps/applications/net/roshttpd/include/debug.h
Daniel Reimer 971503da5d [ROSHTTPD]
Fix release build

svn path=/trunk/; revision=68101
2015-06-10 12:01:01 +00:00

18 lines
291 B
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS HTTP Daemon
* FILE: include/debug.h
*/
#ifndef __DEBUG_H
#define __DEBUG_H
#include <stdio.h>
#if DBG
#define DPRINT(x, ...) printf(x)
#else
#define DPRINT(x, ...)
#endif
#endif /* __DEBUG_H */