We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13d4c99 commit e8dd2f3Copy full SHA for e8dd2f3
1 file changed
rom/partition/debug.h
@@ -1,22 +1,19 @@
1
#ifndef PDEBUG_H
2
#define PDEBUG_H
3
4
-#ifdef __AMIGAOS__
5
-
6
- #if APOLLO_DEBUG
7
- #define DEBUG 1
8
- #else
9
- #define DEBUG 0
10
- #endif
11
12
- #if DEBUG
13
- #define D(x) x
14
- #define bug kprintf
15
+#if APOLLO_DEBUG
+#define DEBUG 0
+#else
+#endif
16
17
- #define kprintf(x)
+#if DEBUG
+#define DD(x) x
+#define D(x)
+#define bug kprintf
18
#else
19
- #include <aros/debug.h>
+#define DD(x)
20
#endif
21
22
0 commit comments