| FABS(3) | Library Functions Manual | FABS(3) |
fabs, fabsf,
fabsl — floating-point
absolute value functions
Math Library (libm, -lm)
#include <math.h>
double
fabs(double
x);
float
fabsf(float
x);
long double
fabsl(long
double x);
The
fabs()
function computes the absolute value of a floating-point number
x. The
fabsf()
function is a single precision version of fabs().
The
fabsl()
function is an extended precision version of
fabs().
The fabs(),
fabsf() and fabsl()
functions return the absolute value of x.
The fabs() function conforms to
ANSI X3.159-1989
(“ANSI C89”).
An fabs() function first appeared in
Version 6 AT&T UNIX.
| June 6, 2025 | Debian |