1 /*
2  * COPYRIGHT:   See COPYING in the top level directory
3  * PROJECT:     ReactOS HTTP Daemon
4  * FILE:        include/debug.h
5  */
6 #ifndef __DEBUG_H
7 #define __DEBUG_H
8 
9 #include <stdio.h>
10 
11 #if DBG
12 #define DPRINT(x, ...)    printf(x)
13 #else
14 #define DPRINT(x, ...)
15 #endif
16 
17 #endif /* __DEBUG_H */
18