/* 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 # endif # if defined(__hpux) extern char *alloca(); # endif #endif #define NO_STAB_H #define HAVE_VPRINTF #define HAVE_ATEXIT #define HAVE_PUTENV