home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / comm / misc / modem / support.h < prev   
C/C++ Source or Header  |  1993-09-04  |  450b  |  25 lines

  1. /*
  2.         This program is copyright 1990, 1993 Stephen Norris. 
  3.         May be freely distributed provided this notice remains intact.
  4. */
  5.  
  6. #ifndef SUPPORT_H
  7. #define SUPPORT_H
  8.  
  9. #include "console.h"
  10.  
  11. #define assert(x) if (!(x)){ printf("Assertion failed at %d in %s.\n",__LINE__,__FILE__); exit(20); }
  12.  
  13. #define MAX(a,b) a>b?a:b
  14. #define MIN(a,b) a<b?a:b
  15.  
  16. #ifndef SUPPORT_C
  17. extern char *NoMem;
  18. #endif
  19.  
  20. void message(char *Text);
  21.  
  22. #define DEBUG 1
  23.  
  24. #endif
  25.