Deleted Added
full compact
iso646.h (18334) iso646.h (90075)
1/* Macros for C programs written in national variants of ISO 646. */
1/* Copyright (C) 1997, 1999 Free Software Foundation, Inc.
2
2
3This file is part of GNU CC.
4
5GNU CC is free software; you can redistribute it and/or modify
6it under the terms of the GNU General Public License as published by
7the Free Software Foundation; either version 2, or (at your option)
8any later version.
9
10GNU CC is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
16along with GNU CC; see the file COPYING. If not, write to
17the Free Software Foundation, 59 Temple Place - Suite 330,
18Boston, MA 02111-1307, USA. */
19
20/* As a special exception, if you include this header file into source
21 files compiled by GCC, this header file does not by itself cause
22 the resulting executable to be covered by the GNU General Public
23 License. This exception does not however invalidate any other
24 reasons why the executable file might be covered by the GNU General
25 Public License. */
26
27/*
28 * ISO C Standard: 7.9 Alternative spellings <iso646.h>
29 */
30
31#ifndef _ISO646_H
32#define _ISO646_H
33
3#ifndef __cplusplus
4#define and &&
5#define and_eq &=
6#define bitand &
7#define bitor |
8#define compl ~
9#define not !
10#define not_eq !=
11#define or ||
12#define or_eq |=
13#define xor ^
14#define xor_eq ^=
15#endif
34#ifndef __cplusplus
35#define and &&
36#define and_eq &=
37#define bitand &
38#define bitor |
39#define compl ~
40#define not !
41#define not_eq !=
42#define or ||
43#define or_eq |=
44#define xor ^
45#define xor_eq ^=
46#endif
47
48#endif