mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
18 lines
292 B
C
18 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 */
|