diff options
| author | christos <christos@NetBSD.org> | 2011-02-06 00:44:08 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2011-02-06 00:44:08 +0000 |
| commit | 2c7774cc2f4bc87ffd736e921d89f0ef50cd0b80 (patch) | |
| tree | d6b7068ea7b38237168490ff1de347914a3795af /include | |
| parent | 3a83a0332d1a016f39c58a10fb3c6965e2cd5d33 (diff) | |
remquo{,f} from FreeBSD via Stathis Kamperis
Diffstat (limited to 'include')
| -rw-r--r-- | include/math.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/math.h b/include/math.h index fe0251c970f..83863417507 100644 --- a/include/math.h +++ b/include/math.h @@ -1,4 +1,4 @@ -/* $NetBSD: math.h,v 1.53 2010/09/15 16:11:30 christos Exp $ */ +/* $NetBSD: math.h,v 1.54 2011/02/06 00:44:08 christos Exp $ */ /* * ==================================================== @@ -349,6 +349,10 @@ long long int llroundf(float); float fmodf(float, float); float remainderf(float, float); +/* 7.12.10.3 The remquo functions */ +double remquo(double, double, int *); +float remquof(float, float, int *); + /* 7.12.11 manipulation */ float copysignf(float, float); |
