1*57893Selan /* Configuration for GNU C-compiler for Motorola 68000 family. 2*57893Selan Copyright (C) 1987 Free Software Foundation, Inc. 3*57893Selan 4*57893Selan This file is part of GNU CC. 5*57893Selan 6*57893Selan GNU CC is free software; you can redistribute it and/or modify 7*57893Selan it under the terms of the GNU General Public License as published by 8*57893Selan the Free Software Foundation; either version 2, or (at your option) 9*57893Selan any later version. 10*57893Selan 11*57893Selan GNU CC is distributed in the hope that it will be useful, 12*57893Selan but WITHOUT ANY WARRANTY; without even the implied warranty of 13*57893Selan MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14*57893Selan GNU General Public License for more details. 15*57893Selan 16*57893Selan You should have received a copy of the GNU General Public License 17*57893Selan along with GNU CC; see the file COPYING. If not, write to 18*57893Selan the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ 19*57893Selan 20*57893Selan 21*57893Selan /* #defines that need visibility everywhere. */ 22*57893Selan #define FALSE 0 23*57893Selan #define TRUE 1 24*57893Selan 25*57893Selan /* This describes the machine the compiler is hosted on. */ 26*57893Selan #define HOST_BITS_PER_CHAR 8 27*57893Selan #define HOST_BITS_PER_SHORT 16 28*57893Selan #define HOST_BITS_PER_INT 32 29*57893Selan #define HOST_BITS_PER_LONG 32 30*57893Selan #define HOST_BITS_PER_LONGLONG 64 31*57893Selan 32*57893Selan #define HOST_WORDS_BIG_ENDIAN 33*57893Selan 34*57893Selan /* target machine dependencies. 35*57893Selan tm.h is a symbolic link to the actual target specific file. */ 36*57893Selan #include "tm.h" 37*57893Selan 38*57893Selan /* Arguments to use with `exit'. */ 39*57893Selan #define SUCCESS_EXIT_CODE 0 40*57893Selan #define FATAL_EXIT_CODE 33 41*57893Selan 42*57893Selan /* If compiled with GNU C, use the built-in alloca */ 43*57893Selan #ifdef __GNUC__ 44*57893Selan /* Use an arg in this macro because that's what some other 45*57893Selan system does--let's avoid conflict. */ 46*57893Selan #define alloca(x) __builtin_alloca(x) 47*57893Selan #endif 48