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/s_cbrtl.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 math/s_cbrtl.c (limited to 'math/s_cbrtl.c') diff --git a/math/s_cbrtl.c b/math/s_cbrtl.c new file mode 100644 index 0000000..d668e37 --- /dev/null +++ b/math/s_cbrtl.c @@ -0,0 +1,15 @@ +#include +#include +#include + +long double +__cbrtl(long double x) +{ + fputs ("__cbrtl not implemented\n", stderr); + __set_errno (ENOSYS); + return 0.0; +} + +weak_alias (__cbrtl, cbrtl) +stub_warning (cbrtl) +#include -- cgit v1.1