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
- Removed unused HandleEvent method.
[AROS.git]
/
rom
/
partition
/
debug.h
blob
bdf59ca164f34fb258a659bcfe837321e440b8a4
1
#ifndef PDEBUG_H
2
#define PDEBUG_H
3
4
#ifdef __AMIGAOS__
5
#if DEBUG
6
# define D(x) x
7
# define bug kprintf
8
#endif
9
#define kprintf(x)
10
#else
11
#include <aros/debug.h>
12
#endif
13
14
#endif
15