* device/include/pic16/pic18f*.h: add bit aliases in INTCONbits_t
[fw/sdcc] / src / z80 / support.h
index cb5191263aa34e59f5eb2deed370dd774d377a58..a2902b75e8b542763885c19d561899fd6467e753 100644 (file)
@@ -7,12 +7,14 @@
 typedef unsigned short WORD;
 typedef unsigned char BYTE;
 
-typedef struct {
+typedef struct
+  {
     WORD w[2];
     BYTE b[4];
-} Z80_FLOAT;
+  }
+Z80_FLOAT;
 
 /** Convert a native float into 'z80' format */
-int convertFloat(Z80_FLOAT *f, double native);
+int convertFloat (Z80_FLOAT * f, double native);
 
 #endif