home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
zip
/
gnu
/
update30.lzh
/
UPDATE30
/
XM-ATARI.H
< prev
Wrap
C/C++ Source or Header
|
1993-07-30
|
919b
|
45 lines
/* The following Macros control the compilation
*
* CROSSATARI defined when making cross compiler for TOS or Minix
* MINIX defined when making cross compiler for MINIX only
* atariminix defined when making compiler for MINIX
* atarist defined when making compiler for TOS
*/
/* we use an extra file, as we don't do links */
/* generic m68k config file */
#include "m68k/xm-m68k.h"
/* make sure this is the case. some versions did'nt def this */
#ifndef HOST_WORDS_BIG_ENDIAN
# define HOST_WORDS_BIG_ENDIAN
#endif
/* make alloca defn more cross-compilable */
#if defined(__GNUC__)
# if defined(alloca)
# undef alloca
# endif
# define alloca(x) __builtin_alloca(x)
#endif
#if !defined(alloca)
# if defined(sparc)
# include <alloca.h>
# endif
# if defined(__hpux)
extern char *alloca();
# endif
#endif
#define NO_STAB_H
#define HAVE_VPRINTF
#define HAVE_ATEXIT
#define HAVE_PUTENV