The function fabsf should return a float, not a double.

This commit is contained in:
Kees van Reeuwijk 2010-02-15 14:25:33 +00:00
parent e306663455
commit 6686e9ae9f

View file

@ -24,7 +24,7 @@ _PROTOTYPE( double cos, (double _x) );
_PROTOTYPE( double cosh, (double _x) );
_PROTOTYPE( double exp, (double _x) );
_PROTOTYPE( double fabs, (double _x) );
_PROTOTYPE( double fabsf, (float _x) );
_PROTOTYPE( float fabsf, (float _x) );
_PROTOTYPE( double floor, (double _x) );
_PROTOTYPE( double fmod, (double _x, double _y) );
_PROTOTYPE( double frexp, (double _x, int *_exp) );