From c837c7ef0990071a3f64a35a62072d5b97269bc7 Mon Sep 17 00:00:00 2001 From: simonm Date: Fri, 29 Jan 1999 13:52:09 +0000 Subject: [PATCH] [project @ 1999-01-29 13:52:09 by simonm] A couple of underscore got lost a long time ago. --- ghc/lib/misc/cbits/ByteOps.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/lib/misc/cbits/ByteOps.c b/ghc/lib/misc/cbits/ByteOps.c index 11ee7b2..77e017f 100644 --- a/ghc/lib/misc/cbits/ByteOps.c +++ b/ghc/lib/misc/cbits/ByteOps.c @@ -26,7 +26,7 @@ returns the number of bytes taken. /* need the ANSI arg decl, so "short" and "float" args dont get promoted */ #define X2BYTES(type) \ I_ \ -type##2bytes(type in, unsigned char *arr) \ +type##2bytes__(type in, unsigned char *arr) \ { \ union { \ type i; \ @@ -44,7 +44,7 @@ type##2bytes(type in, unsigned char *arr) \ #else /* not STDC */ #define X2BYTES(type) \ I_ \ -type##2bytes(type in, unsigned char *arr) \ +type##2bytes__(type in, unsigned char *arr) \ { \ union { \ type i; \ -- 1.7.10.4