vm: use assert() instead of vm_assert(); remove vm_assert().
[minix.git] / man / man3 / fabs.3
blobb2bb2b1f2348fcda41168c8febedd70c444a75fb
1 .TH FABS 3 "January 7, 2010"
2 .UC 4
3 .SH NAME
4 fabs, fabsf \- compute absolute value
5 .SH SYNOPSIS
6 .nf
7 .ft B
8 #include <math.h>
10 double fabs(double \fIx\fP);
11 float fabsf(float \fIx\fP);
12 .fi
13 .SH DESCRIPTION
14 \fBfabs\fP and \fBfabsf\fP return the absolute value of their argument.
15 .SH "RETURN VALUE
16 The return value is a number with the same magnitude as the argument and with
17 a positive sign.