7.12.6.3 The expm1 functions
Synopsis
#include <math.h>
double expm1(double x);
float expm1f(float x);
long double expm1l(long double x);
Description
The expm1 functions compute the base-e exponential of the argument, minus 1. A range error occurs if x is too large.[1]
Returns
The expm1 functions return ex - 1.
Footnotes