MIPS: math-emu: Get rid of typedefs.
[deliverable/linux.git] / arch / mips / math-emu / sp_fint.c
index 9694d6c016cb12081d94c139ef5b97efa9f378d4..7ba2b40348c46d299a7577574163aff0217af982 100644 (file)
@@ -26,7 +26,7 @@
 
 #include "ieee754sp.h"
 
-ieee754sp ieee754sp_fint(int x)
+union ieee754sp ieee754sp_fint(int x)
 {
        unsigned xm;
        int xe;
@@ -70,7 +70,7 @@ ieee754sp ieee754sp_fint(int x)
 }
 
 
-ieee754sp ieee754sp_funs(unsigned int u)
+union ieee754sp ieee754sp_funs(unsigned int u)
 {
        if ((int) u < 0)
                return ieee754sp_add(ieee754sp_1e31(),
This page took 0.025027 seconds and 5 git commands to generate.