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

Steve Kargl kargl at FreeBSD.org
Sun May 17 16:27:08 UTC 2015


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;
 


More information about the svn-src-all mailing list