home *** CD-ROM | disk | FTP | other *** search
/ Fractal Frenzy 1 / WalnutCreekFractalFrenzy-1.iso / pc / viewers / amiga / gifmachn.lzh / rlpsrc / iff / compiler.h next >
C/C++ Source or Header  |  1991-04-08  |  1KB  |  31 lines

  1. #ifndef COMPILER_H
  2. #define COMPILER_H
  3. /*** compiler.h *********************************************************/
  4. /*  Steve Shaw                            1/29/86 */
  5. /*  Portability file to handle compiler idiosyncrasies.            */
  6. /*  Version: Lattice 3.03 cross-compiler for the Amiga from the IBM PC. */
  7. /*                                                                      */ 
  8. /* This software is in the public domain.                               */ 
  9. /*                                                                      */ 
  10. /************************************************************************/
  11.  
  12. #ifndef EXEC_TYPES_H
  13. #include "exec/types.h"
  14. #endif
  15.  
  16.  
  17. /* NOTE  --  NOTE  --  NOTE  --  NOTE  --  NOTE
  18.  * Some C compilers can handle Function Declarations with Argument Types
  19.  * (FDwAT) like this:
  20.  *     extern LONG Seek(BPTR, LONG, LONG)
  21.  * while others choke unless you just say
  22.  *     extern LONG Seek()
  23.  *
  24.  * Comment out the #define FDwAT if you have a compiler that chokes. */
  25.  
  26.  
  27. #define FDwAT
  28.  
  29. #endif COMPILER_H
  30.  
  31.