Last change
on this file since 6888aa2 was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Imported original source code.
|
-
Property mode
set to
100755
|
File size:
466 bytes
|
Rev | Line | |
---|
[3ae31e9] | 1 | /*
|
---|
| 2 | =============================================================================
|
---|
| 3 | debug.h -- some simple debug trace macros
|
---|
| 4 | Version 1 -- 1988-03-03 -- D.N. Lynx Crowe
|
---|
| 5 | =============================================================================
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifdef DEBUGGER
|
---|
| 9 | #define DB_ENTR(mod) DB_Entr(mod)
|
---|
| 10 | #define DB_EXIT(mod) DB_Exit(mod)
|
---|
| 11 | #define DB_CMNT(mod) DB_Cmnt(mod)
|
---|
| 12 | #else
|
---|
| 13 | #define DB_ENTR(mod)
|
---|
| 14 | #define DB_EXIT(mod)
|
---|
| 15 | #define DB_CMNT(mod)
|
---|
| 16 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.