treewars/debug.h

13 lines
157 B
C
Raw Normal View History

2011-06-23 13:38:15 +00:00
#ifndef _DEBUG_H_
#define _DEBUG_H_
#ifdef DEBUG
#include <iostream>
#include <cstdio>
2011-06-23 13:38:15 +00:00
using std::cerr;
using std::endl;
using std::fprintf;
2011-06-23 13:38:15 +00:00
#endif
#endif