fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / newlib / libm / common / s_fma.c
blob86958afcb01e753ee19b34eadcc42614e529e7ab
1 #include "fdlibm.h"
3 #ifndef _DOUBLE_IS_32BITS
5 #ifdef __STDC__
6 double fma(double x, double y, double z)
7 #else
8 double fma(x,y)
9 double x;
10 double y;
11 double z;
12 #endif
14 /* Implementation defined. */
15 return (x * y) + z;
18 #endif /* _DOUBLE_IS_32BITS */