home *** CD-ROM | disk | FTP | other *** search
- /*
- | include this file always, change first line as needed
- */
-
- /*** #define DEBUG ***/
-
- #ifdef DEBUG
-
- #ifndef DEBUG_H
- #define DEBUG_H
- #include <stdio.h>
-
- #define DBG_FPRINTF(lst) (fprintf lst)
-
- void start_debug(void);
-
- #ifdef DBG_MAIN
- FILE *errfile;
- #else
- extern FILE *errfile;
- #endif
- #endif /* !DEBUG_H */
-
- #else /* !DEBUG */
-
- #define DBG_FPRINTF(lst)
- #define start_debug()
-
- #endif /* DEBUG */
-