diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2014-12-15 20:50:23 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2014-12-15 20:50:23 +0000 |
commit | 705cda717ee7ae28c490c51ba80b55fcd38fb210 (patch) | |
tree | 316cd5736d21e59425eef58eeee7928fdd4c29c6 /newlib/libc/include/math.h | |
parent | f97bf8a679600a097ef0aa963e8d7295f95e6937 (diff) | |
download | newlib-705cda717ee7ae28c490c51ba80b55fcd38fb210.zip newlib-705cda717ee7ae28c490c51ba80b55fcd38fb210.tar.gz newlib-705cda717ee7ae28c490c51ba80b55fcd38fb210.tar.bz2 |
2014-12-15 Jonathan Roelofs <jonathan@codesourcery.com>
* libc/include/math.h: Add log2l,logbl,nexttowardf,
* nexttoward,nexttowardl
* libm/common/Makefile.am: Reference new files
* libm/common/Makefile.in: Reference new files
* libm/common/log2l.c: New File
* libm/common/logbl.c: Likewise
* libm/common/nexttowardf.c: Likewise
* libm/common/nexttoward.c: Likewise
* libm/common/nexttowardl.c: Likewise
Diffstat (limited to 'newlib/libc/include/math.h')
-rw-r--r-- | newlib/libc/include/math.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/newlib/libc/include/math.h b/newlib/libc/include/math.h index 6717cb3..d16ce30 100644 --- a/newlib/libc/include/math.h +++ b/newlib/libc/include/math.h @@ -423,6 +423,11 @@ extern int ilogbl _PARAMS((long double)); extern long double asinhl _PARAMS((long double)); extern long double cbrtl _PARAMS((long double)); extern long double nextafterl _PARAMS((long double, long double)); +extern float nexttowardf _PARAMS((float, long double)); +extern double nexttoward _PARAMS((double, long double)); +extern long double nexttowardl _PARAMS((long double, long double)); +extern long double logbl _PARAMS((long double)); +extern long double log2l _PARAMS((long double)); extern long double rintl _PARAMS((long double)); extern long double scalbnl _PARAMS((long double, int)); extern long double exp2l _PARAMS((long double)); |