]> sourceware.org Git - glibc.git/blame - sysdeps/generic/s_exp2l.c
Update.
[glibc.git] / sysdeps / generic / s_exp2l.c
CommitLineData
5929563f
UD
1#include <math.h>
2#include <stdio.h>
d705269e 3#include <errno.h>
5929563f
UD
4
5long double
6__exp2l (long double x)
7{
8 fputs ("__exp2l not implemented\n", stderr);
d705269e 9 __set_errno (ENOSYS);
5929563f
UD
10 return 0.0;
11}
12weak_alias (__exp2l, exp2l)
13
14stub_warning (exp2l)
f2ea0f5b 15#include <stub-tag.h>
This page took 0.037091 seconds and 5 git commands to generate.