diff options
author | das <das@FreeBSD.org> | 2008-06-19 22:39:53 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2008-06-19 22:39:53 +0000 |
commit | 9e4d306f6fe863ceecc097ac5554fee53ab1d7e5 (patch) | |
tree | 4708ca4fbfb23bf4b3fdff4cfb4fe046c81a47d5 /lib/msun/src/math.h | |
parent | 4f152d47fa3740ab3f9b056d153678d594931414 (diff) | |
download | FreeBSD-src-9e4d306f6fe863ceecc097ac5554fee53ab1d7e5.zip FreeBSD-src-9e4d306f6fe863ceecc097ac5554fee53ab1d7e5.tar.gz |
Implement fmodl.
Document fmodl and fix some errors in the fmod manpage.
Diffstat (limited to 'lib/msun/src/math.h')
-rw-r--r-- | lib/msun/src/math.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index c27a2be..97d1a58 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -423,9 +423,7 @@ long double floorl(long double); long double fmal(long double, long double, long double); long double fmaxl(long double, long double) __pure2; long double fminl(long double, long double) __pure2; -#if 0 long double fmodl(long double, long double); -#endif long double frexpl(long double value, int *); /* fundamentally !__pure2 */ long double hypotl(long double, long double); int ilogbl(long double) __pure2; |