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_expl.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_expl.c')
-rw-r--r-- | sysdeps/stub/e_expl.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sysdeps/stub/e_expl.c b/sysdeps/stub/e_expl.c new file mode 100644 index 0000000000..246b5ae83f --- /dev/null +++ b/sysdeps/stub/e_expl.c @@ -0,0 +1,11 @@ +#include <math.h> +#include <stdio.h> + +long double +__ieee754_expl (long double x) +{ + fputs ("__ieee754_expl not implemented\n", stderr); + return 0.0; +} + +stub_warning (__ieee754_expl) |