summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ginclude/iso646.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/ginclude/iso646.h b/gcc/ginclude/iso646.h
new file mode 100644
index 00000000000..60e7e60a0a3
--- /dev/null
+++ b/gcc/ginclude/iso646.h
@@ -0,0 +1,13 @@
+/* Macros for C programs written in national variants of ISO 646. */
+
+#define and &&
+#define and_eq &=
+#define bitand &
+#define bitor |
+#define compl ~
+#define not !
+#define not_eq !=
+#define or ||
+#define or_eq |=
+#define xor ^
+#define xor_eq ^=