[project @ 1998-12-02 13:17:09 by simonm]
[ghc-hetmet.git] / ghc / lib / misc / cbits / ByteOps.h
index df76013..73681d0 100644 (file)
@@ -3,16 +3,16 @@
 
 /* "Native" support */
 /* sigh again: without these some (notably "float") willnae work */
-I_ long2bytes__          PROTO((long,  unsigned char *));
-I_ int2bytes__   PROTO((int,   unsigned char *));
-I_ short2bytes__  PROTO((short,        unsigned char *));
-I_ float2bytes__  PROTO((float,        unsigned char *));
-I_ double2bytes__ PROTO((double, unsigned char *));
+I_ long2bytes__          (long,   unsigned char *);
+I_ int2bytes__   (int,    unsigned char *);
+I_ short2bytes__  (short,  unsigned char *);
+I_ float2bytes__  (float,  unsigned char *);
+I_ double2bytes__ (double, unsigned char *);
 
-I_ bytes2long__          PROTO((P_, I_ *));
-I_ bytes2int__   PROTO((P_, I_ *));
-I_ bytes2short__  PROTO((P_, I_ *));
-I_ bytes2float__  PROTO((P_, StgFloat *));
-I_ bytes2double__ PROTO((P_, StgDouble *));
+I_ bytes2long__          (P_, I_ *);
+I_ bytes2int__   (P_, I_ *);
+I_ bytes2short__  (P_, I_ *);
+I_ bytes2float__  (P_, StgFloat *);
+I_ bytes2double__ (P_, StgDouble *);
 
 #endif