blob: 70096a820c8ba823fb20800d72819c49b600f128 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#include <math.h>
2#include <stdio.h>
3#include <errno.h>
4
5long double
6__expl(long double x)
7{
8 fputs ("__expl not implemented\n", stderr);
9 __set_errno (ENOSYS);
10 return 0.0;
11}
12
13weak_alias (__expl, expl)