home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD1.iso
/
Emulatoren
/
FS_FRO23.LZX
/
Frodo
/
src
/
debug.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1995-10-06
|
187 b
|
17 lines
#ifndef DEBUG_H
#define DEBUG_H
#define DEBUG_DETAIL 1
extern void kprintf(UBYTE *fmt,...);
#define bug kprintf
#if DEBUG_DETAIL
#define D(x) (x);
#else
#define D(x) ;
#endif
#endif