mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
18 lines
291 B
C
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 */
|