summaryrefslogtreecommitdiff
path: root/include/debug.h
blob: 5b780bc26e7a52ed2a93e8baabb45c6de4e188ad (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _DEBUG_H_
#define _DEBUG_H_

#ifdef DEBUGGING
#  define DEBUG(...) fprintf (stderr, __VA_ARGS__)
#else
#  define DEBUG(...)
#endif 

#endif