Forward compatibility: build relative-base link libraries where needed
[AROS.git] / arch / ppc-chrp / boot / openfirmware / include / debug.h
blob6f5fe58127e04ea6c3956e93898152cbc96ea8c8
1 /*
2 * debug.h
4 * Created on: Aug 13, 2008
5 * Author: misc
6 */
8 #ifndef DEBUG_H_
9 #define DEBUG_H_
11 #include <of1275.h>
13 #if DEBUG
14 #define D(x) (x)
15 #else
16 #define D(x) /* */
17 #endif
19 #define bug(...) printf(__VA_ARGS__)
21 #endif /* DEBUG_H_ */