Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 May 2015 16:27:07 +0000 (UTC)
From:      Steve Kargl <kargl@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r283032 - head/lib/msun/src
Message-ID:  <201505171627.t4HGR7iq073075@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kargl
Date: Sun May 17 16:27:06 2015
New Revision: 283032
URL: https://svnweb.freebsd.org/changeset/base/283032

Log:
  In r279493, the functions pzero[f](), qzero[f], pone[f](),
  and qone[f]() were marked as __inline, but their forward
  declarations were not updated.  Fix the forward declarations
  to match the actual function declarations.
  
  Requested by:	 bde

Modified:
  head/lib/msun/src/e_j0.c
  head/lib/msun/src/e_j0f.c
  head/lib/msun/src/e_j1.c
  head/lib/msun/src/e_j1f.c

Modified: head/lib/msun/src/e_j0.c
==============================================================================
--- head/lib/msun/src/e_j0.c	Sun May 17 16:17:15 2015	(r283031)
+++ head/lib/msun/src/e_j0.c	Sun May 17 16:27:06 2015	(r283032)
@@ -62,7 +62,7 @@ __FBSDID("$FreeBSD$");
 #include "math.h"
 #include "math_private.h"
 
-static double pzero(double), qzero(double);
+static __inline double pzero(double), qzero(double);
 
 static const volatile double vone = 1, vzero = 0;
 

Modified: head/lib/msun/src/e_j0f.c
==============================================================================
--- head/lib/msun/src/e_j0f.c	Sun May 17 16:17:15 2015	(r283031)
+++ head/lib/msun/src/e_j0f.c	Sun May 17 16:27:06 2015	(r283032)
@@ -23,7 +23,7 @@ __FBSDID("$FreeBSD$");
 #include "math.h"
 #include "math_private.h"
 
-static float pzerof(float), qzerof(float);
+static __inline float pzerof(float), qzerof(float);
 
 static const volatile float vone = 1,  vzero = 0;
 

Modified: head/lib/msun/src/e_j1.c
==============================================================================
--- head/lib/msun/src/e_j1.c	Sun May 17 16:17:15 2015	(r283031)
+++ head/lib/msun/src/e_j1.c	Sun May 17 16:27:06 2015	(r283032)
@@ -62,7 +62,7 @@ __FBSDID("$FreeBSD$");
 #include "math.h"
 #include "math_private.h"
 
-static double pone(double), qone(double);
+static __inline double pone(double), qone(double);
 
 static const volatile double vone = 1, vzero = 0;
 

Modified: head/lib/msun/src/e_j1f.c
==============================================================================
--- head/lib/msun/src/e_j1f.c	Sun May 17 16:17:15 2015	(r283031)
+++ head/lib/msun/src/e_j1f.c	Sun May 17 16:27:06 2015	(r283032)
@@ -23,7 +23,7 @@ __FBSDID("$FreeBSD$");
 #include "math.h"
 #include "math_private.h"
 
-static float ponef(float), qonef(float);
+static __inline float ponef(float), qonef(float);
 
 static const volatile float vone = 1, vzero = 0;
 



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