home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / texmf / source / driver / defines.h next >
C/C++ Source or Header  |  1995-06-05  |  892b  |  76 lines

  1. #ifndef DEFINES_H
  2. #define DEFINES_H
  3.  
  4. /*
  5. #define ATARI 
  6. #define DISPLAY
  7. */
  8.  
  9. #define ANSI
  10.  
  11.  
  12. #ifndef AMIGA
  13. #  define AMIGA
  14. #endif
  15.  
  16.  
  17. #ifdef ATARI
  18. #  define SLOW
  19. #endif
  20.  
  21.  
  22.  
  23. /**************************************************************************/
  24. /***            A    N    S    I            ***/
  25. /**************************************************************************/
  26.  
  27.  
  28. #ifdef MCH_AMIGA        /* Aztec C defines this */
  29. # ifndef AMIGA
  30. #  define AMIGA
  31. # endif
  32. #endif
  33.  
  34. #ifdef AMIGA
  35. #  ifdef LATTICE
  36. #    define ANSI
  37. #  endif
  38. #  ifdef AZTEC_C
  39. #    define ANSI
  40. #  endif
  41. #endif
  42.  
  43. #ifdef ANSI
  44. #  define Args(x)    x
  45. #else
  46. #  define Args(x)    ()
  47. #endif
  48.  
  49.  
  50. #ifdef AZTEC_C
  51. #  define __stdargs
  52. #  define chip
  53. #endif
  54.  
  55.  
  56. /***        O    T    H    E    R        ***/
  57.  
  58.  
  59. // #define DEBUG
  60. #undef DEBUG
  61.  
  62.  
  63.  
  64. #undef BETACOPYRIGHT    /* zusaetzlicher Copyright-String */
  65.  
  66.  
  67. #if defined(AMIGA)
  68. # if defined(M68020)
  69. #  include <m68881.h>
  70. # endif
  71. #endif
  72.  
  73.  
  74.  
  75. #endif  /* DEFINES_H */
  76.