diff options
author | Ulrich Drepper <drepper@redhat.com> | 1996-10-13 10:40:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1996-10-13 10:40:32 +0000 |
commit | 31c95122ee73661bacd2b3f35140937e5950a7f5 (patch) | |
tree | 9b435240313401d417249e02f83f895c03b5307c /sysdeps/stub/e_acosl.c | |
parent | 201d97bbe938892fce5666ab251d5b9387145f52 (diff) | |
download | glibc-31c95122ee73661bacd2b3f35140937e5950a7f5.tar.gz glibc-31c95122ee73661bacd2b3f35140937e5950a7f5.tar.xz glibc-31c95122ee73661bacd2b3f35140937e5950a7f5.zip |
add missing files cvs/libc-961013
Diffstat (limited to 'sysdeps/stub/e_acosl.c')
-rw-r--r-- | sysdeps/stub/e_acosl.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sysdeps/stub/e_acosl.c b/sysdeps/stub/e_acosl.c new file mode 100644 index 0000000000..5c10b526cc --- /dev/null +++ b/sysdeps/stub/e_acosl.c @@ -0,0 +1,11 @@ +#include <math.h> +#include <stdio.h> + +long double +__ieee754_acosl (long double x) +{ + fputs ("__ieee754_acosl not implemented\n", stderr); + return 0.0; +} + +stub_warning (__ieee754_acosl) |