repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
revert between 56095 -> 55830 in arch
[AROS.git]
/
arch
/
ppc-chrp
/
boot
/
openfirmware
/
include
/
debug.h
blob
6f5fe58127e04ea6c3956e93898152cbc96ea8c8
1
/*
2
* debug.h
3
*
4
* Created on: Aug 13, 2008
5
* Author: misc
6
*/
7
8
#ifndef DEBUG_H_
9
#define DEBUG_H_
10
11
#include <of1275.h>
12
13
#if DEBUG
14
#define D(x) (x)
15
#else
16
#define D(x)
/* */
17
#endif
18
19
#define bug(...) printf(__VA_ARGS__)
20
21
#endif
/* DEBUG_H_ */