_PROTOTYPE( double cosh, (double _x) );
_PROTOTYPE( double exp, (double _x) );
_PROTOTYPE( double fabs, (double _x) );
+_PROTOTYPE( double fabsf, (float _x) );
_PROTOTYPE( double floor, (double _x) );
_PROTOTYPE( double fmod, (double _x, double _y) );
_PROTOTYPE( double frexp, (double _x, int *_exp) );
--- /dev/null
+.TH FABS 3 "January 7, 2009"
+.UC 4
+.SH NAME
+fabs, fabsf \- compute absolute value
+.SH SYNOPSIS
+.nf
+.ft B
+#include <math.h>
+
+double fabs(double \fIx\fP);
+float fabsf(float \fIx\fP);
+.fi
+.SH DESCRIPTION
+\fBfabs\fP and \fBfabsf\fP return the absolute value of their argument.
+.SH "RETURN VALUE
+The return value is a number with the same magnitude as the argument and with
+a positive sign.
+