1132718Skan/* Target definitions for GCC for Intel 80386 running System V.4
2117395Skan   Copyright (C) 1991, 2001, 2002 Free Software Foundation, Inc.
3117395Skan
4117395Skan   Written by Ron Guilmette (rfg@netcom.com).
5117395Skan
6132718SkanThis file is part of GCC.
7117395Skan
8132718SkanGCC is free software; you can redistribute it and/or modify
9117395Skanit under the terms of the GNU General Public License as published by
10117395Skanthe Free Software Foundation; either version 2, or (at your option)
11117395Skanany later version.
12117395Skan
13132718SkanGCC is distributed in the hope that it will be useful,
14117395Skanbut WITHOUT ANY WARRANTY; without even the implied warranty of
15117395SkanMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16117395SkanGNU General Public License for more details.
17117395Skan
18117395SkanYou should have received a copy of the GNU General Public License
19132718Skanalong with GCC; see the file COPYING.  If not, write to
20169689Skanthe Free Software Foundation, 51 Franklin Street, Fifth Floor,
21169689SkanBoston, MA 02110-1301, USA.  */
22117395Skan
23117395Skan#define TARGET_OS_CPP_BUILTINS()					\
24117395Skan  do									\
25117395Skan    {									\
26117395Skan	builtin_define_std ("unix");					\
27117395Skan	builtin_define ("__svr4__");					\
28117395Skan	builtin_assert ("system=unix");					\
29117395Skan	builtin_assert ("system=svr4");					\
30117395Skan    }									\
31117395Skan  while (0)
32117395Skan
33