home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / rpn30src.zip / DEBUG.C next >
C/C++ Source or Header  |  1990-05-08  |  283b  |  17 lines

  1. /*
  2. | debugging code
  3. */
  4. #define DBG_MAIN
  5. #include "debug.h"    /* is DEBUG defined (in .h), or not? */
  6.  
  7. #ifdef DEBUG
  8. #include "rpn.h"
  9.  
  10. void start_debug(void)
  11. {
  12.     errfile = fopen("rpn.err","w");
  13.     fprintf(errfile,"starting rpn version %s\n", version);
  14. }
  15.  
  16. #endif    /* DEBUG */
  17.