home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CUCD / Programming / OUI / include / rcs / compiler.h next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  673 b   |  46 lines

  1. head    1.1;
  2. access;
  3. symbols;
  4. locks
  5.     dlorre:1.1; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.1
  10. date    97.07.14.04.23.43;    author dlorre;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @compiler definitions (SASC/GNUC)
  17. @
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @// $Id$
  26. // compiler.h : this file handles hopefully your favorite compiler
  27.  
  28. #if defined( __SASC__ ) || defined( __STORMC__ )
  29. #define GETA4   /* */
  30. #define SAVEDS  __saveds
  31. #define FAR     __far
  32. #define ALIGNED __aligned
  33. #define STDARGS __stdargs
  34. #endif
  35.  
  36. #if defined( __GNUG__ )
  37. #include "GNU/stabs.h"
  38. #define GETA4   geta4()
  39. #define SAVEDS  /* */
  40. #define FAR     /* */
  41. #define ALIGNED /* */
  42. #define STDARGS /* */
  43. extern "C" void geta4(void) ;
  44. #endif
  45. @
  46.