mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
1e3d5d70e9
svn path=/trunk/; revision=26033
17 lines
292 B
C
17 lines
292 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>
|
|
|
|
#ifdef DBG
|
|
#define DPRINT(x, ...) printf(x)
|
|
#else
|
|
#define DPRINT(x...)
|
|
#endif
|
|
|
|
#endif /* __DEBUG_H */
|