Initial revision
[official-gcc.git] / gcc / config / m68k / xm-amix.h
blob69b4bd17c7474155dd378c504be5f5879e93ece0
1 /* Definitions of host machine for GNU compiler.
2 Commodore Amiga A3000UX version.
4 Copyright (C) 1991 Free Software Foundation, Inc.
6 This file is part of GNU CC.
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 1, or (at your option)
11 any later version.
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
23 #include "m68k/xm-m68kv.h" /* Use the System V flavor of m68k host */
25 #define HAVE_VPRINTF /* Host has vprintf() in library */
26 #define rindex strrchr
27 #define index strchr
29 /* Define FULL_PROTOTYPES for protoize.c, to get <unistd.h> included.
30 We need this file for things like R_OK, not necessarily prototypes. */
32 #define FULL_PROTOTYPES
34 #if defined (__GNUC__) && __GNUC__ == 1
35 #define alloca __builtin_alloca
36 #endif
38 #if 0 /* I don't want individual ports to be inconsistent about this.
39 I regard fancy_abort as a half-solution and not the right way
40 to do things. --rms. */
41 /* The m88k and mips ports make use of fancy_abort to give possibly helpful
42 abort information rather than just dumping core. They do it in their
43 tm-* files. It seems more logical that this is a characteristic of
44 the host machine and not the target machine, so we do it here. */
46 #define abort fancy_abort /* give possibly helpful abort info */
47 #endif