summaryrefslogtreecommitdiff
path: root/ghc/lib/misc/cbits/ByteOps.c
diff options
context:
space:
mode:
authorsimonm <unknown>1999-01-29 13:52:09 +0000
committersimonm <unknown>1999-01-29 13:52:09 +0000
commitc837c7ef0990071a3f64a35a62072d5b97269bc7 (patch)
tree9880c3e6082735799c722665e02d6e6a768626f8 /ghc/lib/misc/cbits/ByteOps.c
parentb394183bad7ce8f5a4ae6ac571b0f433104f97be (diff)
downloadhaskell-c837c7ef0990071a3f64a35a62072d5b97269bc7.tar.gz
[project @ 1999-01-29 13:52:09 by simonm]
A couple of underscore got lost a long time ago.
Diffstat (limited to 'ghc/lib/misc/cbits/ByteOps.c')
-rw-r--r--ghc/lib/misc/cbits/ByteOps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/lib/misc/cbits/ByteOps.c b/ghc/lib/misc/cbits/ByteOps.c
index 11ee7b267c..77e017f571 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; \