190075Sobrien/* Copyright (C) 1997, 1999 Free Software Foundation, Inc.
218334Speter
3132718SkanThis file is part of GCC.
490075Sobrien
5132718SkanGCC is free software; you can redistribute it and/or modify
690075Sobrienit under the terms of the GNU General Public License as published by
790075Sobrienthe Free Software Foundation; either version 2, or (at your option)
890075Sobrienany later version.
990075Sobrien
10132718SkanGCC is distributed in the hope that it will be useful,
1190075Sobrienbut WITHOUT ANY WARRANTY; without even the implied warranty of
1290075SobrienMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1390075SobrienGNU General Public License for more details.
1490075Sobrien
1590075SobrienYou should have received a copy of the GNU General Public License
16132718Skanalong with GCC; see the file COPYING.  If not, write to
17169689Skanthe Free Software Foundation, 51 Franklin Street, Fifth Floor,
18169689SkanBoston, MA 02110-1301, USA.  */
1990075Sobrien
2090075Sobrien/* As a special exception, if you include this header file into source
2190075Sobrien   files compiled by GCC, this header file does not by itself cause
2290075Sobrien   the resulting executable to be covered by the GNU General Public
2390075Sobrien   License.  This exception does not however invalidate any other
2490075Sobrien   reasons why the executable file might be covered by the GNU General
2590075Sobrien   Public License.  */
2690075Sobrien
2790075Sobrien/*
2890075Sobrien * ISO C Standard:  7.9  Alternative spellings  <iso646.h>
2990075Sobrien */
3090075Sobrien
3190075Sobrien#ifndef _ISO646_H
3290075Sobrien#define _ISO646_H
3390075Sobrien
3418334Speter#ifndef __cplusplus
3518334Speter#define and	&&
3618334Speter#define and_eq	&=
3718334Speter#define bitand	&
3818334Speter#define bitor	|
3918334Speter#define compl	~
4018334Speter#define not	!
4118334Speter#define not_eq	!=
4218334Speter#define or	||
4318334Speter#define or_eq	|=
4418334Speter#define xor	^
4518334Speter#define xor_eq	^=
4618334Speter#endif
4790075Sobrien
4890075Sobrien#endif
49