13 lines
157 B
C++
13 lines
157 B
C++
#ifndef _DEBUG_H_
|
|
#define _DEBUG_H_
|
|
|
|
#ifdef DEBUG
|
|
#include <iostream>
|
|
#include <cstdio>
|
|
using std::cerr;
|
|
using std::endl;
|
|
using std::fprintf;
|
|
#endif
|
|
|
|
#endif
|