Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Dec 2016 20:01:12 +0000 (UTC)
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r309510 - stable/10/lib/msun/src
Message-ID:  <201612032001.uB3K1CjJ090763@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612032001.uB3K1CjJ090763>