svn commit: r309510 - stable/10/lib/msun/src
Edward Tomasz Napierala
trasz at FreeBSD.org
Sat Dec 3 20:01:13 UTC 2016
Author: trasz
Date: Sat Dec 3 20:01:12 2016
New Revision: 309510
URL: https://svnweb.freebsd.org/changeset/base/309510
Log:
MFC r301761:
Fix frexpl() declaration to not include the field name.
Modified:
stable/10/lib/msun/src/math.h
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/lib/msun/src/math.h
==============================================================================
--- stable/10/lib/msun/src/math.h Sat Dec 3 19:55:55 2016 (r309509)
+++ stable/10/lib/msun/src/math.h Sat Dec 3 20:01:12 2016 (r309510)
@@ -465,7 +465,7 @@ long double fmal(long double, long doubl
long double fmaxl(long double, long double) __pure2;
long double fminl(long double, long double) __pure2;
long double fmodl(long double, long double);
-long double frexpl(long double value, int *); /* fundamentally !__pure2 */
+long double frexpl(long double, int *); /* fundamentally !__pure2 */
long double hypotl(long double, long double);
int ilogbl(long double) __pure2;
long double ldexpl(long double, int);
More information about the svn-src-stable-10
mailing list