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 / compiler.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  505 b   |  21 lines

  1. // $Id: compiler.h 1.1 1997/07/14 04:23:43 dlorre Exp dlorre $
  2. // compiler.h : this file handles hopefully your favorite compiler
  3.  
  4. #if defined( __SASC__ ) || defined( __STORMC__ )
  5. #define GETA4   /* */
  6. #define SAVEDS  __saveds
  7. #define FAR     __far
  8. #define ALIGNED __aligned
  9. #define STDARGS __stdargs
  10. #endif
  11.  
  12. #if defined( __GNUG__ )
  13. #include "GNU/stabs.h"
  14. #define GETA4   geta4()
  15. #define SAVEDS  /* */
  16. #define FAR     /* */
  17. #define ALIGNED /* */
  18. #define STDARGS /* */
  19. extern "C" void geta4(void) ;
  20. #endif
  21.