diff options
author | 1996-10-13 10:40:32 +0000 | |
---|---|---|
committer | 1996-10-13 10:40:32 +0000 | |
commit | 31c95122ee73661bacd2b3f35140937e5950a7f5 (patch) | |
tree | 9b435240313401d417249e02f83f895c03b5307c /sysdeps/stub/e_expl.c | |
parent | (__hash_open): Correctly test for a read-write db. (diff) | |
download | glibc-cvs/libc-961013.tar.xz glibc-cvs/libc-961013.zip |
add missing filescvs/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) |