From 90aaf6aa47b60252d23788256667fe7a37f54028 Mon Sep 17 00:00:00 2001 From: solar Date: Fri, 2 Dec 2005 10:52:00 +0000 Subject: [PATCH] Some non-7-bit chars have crept in. Fixed. --- includes/iso646.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/iso646.h b/includes/iso646.h index 48ca809..ed6dce2 100644 --- a/includes/iso646.h +++ b/includes/iso646.h @@ -15,13 +15,13 @@ #define and_eq &= #define bitand & #define bitor | -#define compl ˜ +#define compl ~ #define not ! #define not_eq != #define or || #define or_eq |= -#define xor ˆ -#define xor_eq ˆ= +#define xor ^ +#define xor_eq ^= #endif -- 2.40.0