1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-04-24 21:47:24 +03:00
glibc/sysdeps/generic/w_expl.c
Ulrich Drepper abfbdde177 Update.
1999-07-14 00:54:57 +00:00

14 lines
206 B
C

#include <math.h>
#include <stdio.h>
#include <errno.h>
long double
__expl(long double x)
{
fputs ("__expl not implemented\n", stderr);
__set_errno (ENOSYS);
return 0.0;
}
weak_alias (__expl, expl)