From 0ecb606cb6cf65de1d9fc8a919bceb4be476c602 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Thu, 12 Jul 2007 18:26:36 +0000 Subject: 2.5-18.1 --- 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 0000000..70096a8 --- /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 v1.1