MIPS: math-emu: Get rid of typedefs.
[deliverable/linux.git] / arch / mips / math-emu / dp_tlong.c
index 133ce2ba0012eb61e09a4a5729cf25bb32ea82e3..3366399eebe8f4143dc1b9ff3560bf1c05f6919d 100644 (file)
@@ -26,7 +26,7 @@
 
 #include "ieee754dp.h"
 
-s64 ieee754dp_tlong(ieee754dp x)
+s64 ieee754dp_tlong(union ieee754dp x)
 {
        COMPXDP;
 
@@ -112,9 +112,9 @@ s64 ieee754dp_tlong(ieee754dp x)
 }
 
 
-u64 ieee754dp_tulong(ieee754dp x)
+u64 ieee754dp_tulong(union ieee754dp x)
 {
-       ieee754dp hb = ieee754dp_1e63();
+       union ieee754dp hb = ieee754dp_1e63();
 
        /* what if x < 0 ?? */
        if (ieee754dp_lt(x, hb))
This page took 0.027392 seconds and 5 git commands to generate.