blob: 183053a42ed04186b9744bf6386de4240045f1b5 [file] [log] [blame]
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#include <math.h>
long double log1pl(long double x)
{
return log1p(x);
}