repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
sys
/
netiso
/
xebec
/
debug.h
blob
88ddc501476525e7cad73827eac5daa435b2b808
1
/* $NetBSD: debug.h,v 1.7 2005/12/11 12:25:15 christos Exp $ */
2
3
#define OUT stdout
4
5
extern
int
debug
[
128
];
6
7
#ifdef DEBUG
8
extern
int
column
;
9
10
#define IFDEBUG(letter) \
11
if(debug[
'letter'
]) {
12
#define ENDDEBUG ; (void) fflush(stdout);}
13
14
#else
15
16
#define STAR *
17
#define IFDEBUG(letter) {
18
#define ENDDEBUG ; }
19
20
#endif
/* DEBUG */
21