svn commit: r301761 - head/lib/msun/src

Edward Tomasz Napierala trasz at FreeBSD.org
Thu Jun 9 20:49:28 UTC 2016


Author: trasz
Date: Thu Jun  9 20:49:26 2016
New Revision: 301761
URL: https://svnweb.freebsd.org/changeset/base/301761

Log:
  Fix frexpl() declaration to not include the field name.
  
  MFC after:	1 month

Modified:
  head/lib/msun/src/math.h

Modified: head/lib/msun/src/math.h
==============================================================================
--- head/lib/msun/src/math.h	Thu Jun  9 20:43:14 2016	(r301760)
+++ head/lib/msun/src/math.h	Thu Jun  9 20:49:26 2016	(r301761)
@@ -461,7 +461,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-head mailing list