[project @ 2002-06-03 11:31:55 by simonmar]
authorsimonmar <unknown>
Mon, 3 Jun 2002 11:31:55 +0000 (11:31 +0000)
committersimonmar <unknown>
Mon, 3 Jun 2002 11:31:55 +0000 (11:31 +0000)
#undef C & R after using them, we don't want to pollute C's namespace
with one-character #defines...

ghc/includes/PrimOps.h

index 7a7054c..646f384 100644 (file)
@@ -1,5 +1,5 @@
 /* -----------------------------------------------------------------------------
- * $Id: PrimOps.h,v 1.93 2002/04/10 11:43:43 stolz Exp $
+ * $Id: PrimOps.h,v 1.94 2002/06/03 11:31:55 simonmar Exp $
  *
  * (c) The GHC Team, 1998-2000
  *
@@ -78,6 +78,9 @@ typedef union {
  * you test it thoroughly after changing it.
  */
 
+#undef C
+#undef R
+
 #else
 
 #define HALF_INT  (((I_)1) << (BITS_IN (I_) / 2))