blob: 89447b4cbb22991e727aff4c2688d6284ca8a8b9 [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 exp2l(long double x)
{
return powl(2.0, x);
}