Import gcc-2.8.1.tar.bz2
[official-gcc.git] / gcc / config / m68k / xm-atari.h
blob323d89052c0d50c43ca5a5664b872b6924a34a5b
1 /* Definitions of host machine for GNU compiler.
2 Atari TT ASV version.
3 Copyright (C) 1994, 1995, 1997 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 1, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #include "m68k/xm-m68kv.h" /* Use the System V flavor of m68k host */
24 #define HAVE_VPRINTF /* Host has vprintf() in library */
26 /* Add HZ define if missing */
28 #ifndef HZ
29 #define HZ 100 /* System clock */
30 #endif
32 /* Define FULL_PROTOTYPES for protoize.c, to get <unistd.h> included.
33 We need this file for things like R_OK, not necessarily prototypes. */
35 #define FULL_PROTOTYPES
37 #if defined (__GNUC__) && __GNUC__ == 1
38 #define alloca __builtin_alloca
39 #endif
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 */