reactos/rosapps/applications/net/roshttpd/include/debug.h
Stefan Ginsberg 2c8507d494 - Leftover from 41436
svn path=/trunk/; revision=41437
2009-06-17 12:44:56 +00:00

18 lines
289 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 */