diff options
author | Szabolcs Nagy <nsz@port70.net> | 2013-11-21 01:16:49 +0000 |
---|---|---|
committer | Szabolcs Nagy <nsz@port70.net> | 2013-11-21 01:16:49 +0000 |
commit | 5d01ab4ac64b913c537e91f7c01d5c8e910151da (patch) | |
tree | 68585091ada93029345fb30960e61cb6c8c0eb42 /include/math.h | |
parent | ebbaf2180e6e32043837f570982c2ee86cf19eae (diff) | |
download | musl-5d01ab4ac64b913c537e91f7c01d5c8e910151da.tar.gz musl-5d01ab4ac64b913c537e91f7c01d5c8e910151da.tar.xz musl-5d01ab4ac64b913c537e91f7c01d5c8e910151da.zip |
math: add (obsolete) bsd drem and finite functions
Diffstat (limited to 'include/math.h')
-rw-r--r-- | include/math.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/math.h b/include/math.h index 3c2105ef..ec04a8a7 100644 --- a/include/math.h +++ b/include/math.h @@ -381,6 +381,12 @@ double yn(int, double); #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) #define HUGE 3.40282346638528859812e+38F +double drem(double, double); +float dremf(float, float); + +int finite(double); +int finitef(float); + double scalb(double, double); float scalbf(float, float); |