projects
/
mspang
/
www.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
s/Summer/Spring/ - woops!
[mspang/www.git]
/
cow
/
debug.h
1
#ifndef CSC_COW_DEBUG_H
2
#define CSC_COW_DEBUG_H
3
4
#include <stdio.h>
5
6
#ifdef DEBUG
7
#define DEBUG_PRINT(x) do { fprintf(stderr, "%s:%d (%s): %s\n", __FILE__, \
8
__LINE__, __FUNCTION__, x); } while (0)
9
#else
10
#define DEBUG_PRINT(x) do { } while (0)
11
#endif
12
13
#endif