Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 Jun 2016 20:49:26 +0000 (UTC)
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r301761 - head/lib/msun/src
Message-ID:  <201606092049.u59KnQ7V043183@repo.freebsd.org>

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



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