1132718Skan/* Definitions of target machine for GCC.
2132718Skan   common kaOS definitions for all architectures.
3132718Skan   Copyright (C) 2003 Free Software Foundation, Inc.
4132718Skan
5132718SkanThis file is part of GCC.
6132718Skan
7132718SkanGCC is free software; you can redistribute it and/or modify
8132718Skanit under the terms of the GNU General Public License as published by
9132718Skanthe Free Software Foundation; either version 2, or (at your option)
10132718Skanany later version.
11132718Skan
12132718SkanGCC is distributed in the hope that it will be useful,
13132718Skanbut WITHOUT ANY WARRANTY; without even the implied warranty of
14132718SkanMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15132718SkanGNU General Public License for more details.
16132718Skan
17132718SkanYou should have received a copy of the GNU General Public License
18132718Skanalong with GCC; see the file COPYING.  If not, write to
19169689Skanthe Free Software Foundation, 51 Franklin Street, Fifth Floor,
20169689SkanBoston, MA 02110-1301, USA.  */
21132718Skan
22132718Skan/* Specify predefined symbols in preprocessor.  */
23132718Skan#define TARGET_OS_CPP_BUILTINS()		\
24132718Skan    do {					\
25132718Skan	builtin_define ("__kaOS__");	\
26132718Skan    } while (0)
27132718Skan
28132718Skan
29132718Skan/* do not link any library implicitly for kaOS target.  */
30132718Skan#undef LIB_SPEC
31132718Skan#define LIB_SPEC ""
32