repo.or.cz
/
pmc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Drop -Werror
[pmc.git]
/
debug.h
blob
55153c4513ee47d050a56d95b6e430c6a751e0e9
1
#ifndef DEBUG_H
2
#define DEBUG_H
3
4
#include <stdio.h>
5
6
int
debug_open
(
void
);
7
void
debug_close
(
void
);
8
9
#define debug_print(fmt, args...) \
10
if (_debug) do {\
11
fprintf(_debug, fmt, ##args); \
12
fflush(_debug); \
13
} while(0)
14
15
extern
FILE
*
_debug
;
16
17
#endif