From 9d13fb2413921c713f83efe331e8e4d219c62c6b Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 14 Dec 2005 15:06:39 +0000 Subject: Moved to csu/errno-loc.c. --- math/w_expl.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 math/w_expl.c (limited to 'math/w_expl.c') diff --git a/math/w_expl.c b/math/w_expl.c new file mode 100644 index 0000000000..70096a820c --- /dev/null +++ b/math/w_expl.c @@ -0,0 +1,13 @@ +#include +#include +#include + +long double +__expl(long double x) +{ + fputs ("__expl not implemented\n", stderr); + __set_errno (ENOSYS); + return 0.0; +} + +weak_alias (__expl, expl) -- cgit 1.4.1