home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff373.lzh
/
Multiplot
/
source
/
mplot_src
/
src.zoo
/
compiler.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-08-02
|
1KB
|
33 lines
#ifndef COMPILER_H
#define COMPILER_H
/*** compiler.h *********************************************************/
/* Steve Shaw 1/29/86 */
/* Portability file to handle compiler idiosyncrasies. */
/* Version: Lattice 3.03 cross-compiler for the Amiga from the IBM PC. */
/* */
/* This software is in the public domain. */
/* */
/************************************************************************/
#ifndef EXEC_TYPES_H
#include "exec/types.h"
#endif
/* NOTE -- NOTE -- NOTE -- NOTE -- NOTE
* Some C compilers can handle Function Declarations with Argument Types
* (FDwAT) like this:
* extern LONG Seek(BPTR, LONG, LONG)
* while others choke unless you just say
* extern LONG Seek()
*
* Comment out the #define FDwAT if you have a compiler that chokes. */
/* #define FDwAT COMMENTED OUT BECAUSE GREENHILLS CANT TAKE IT */
#endif COMPILER_H