summaryrefslogtreecommitdiffstats
path: root/lib/msun
diff options
context:
space:
mode:
authorkargl <kargl@FreeBSD.org>2015-05-17 16:27:06 +0000
committerkargl <kargl@FreeBSD.org>2015-05-17 16:27:06 +0000
commit4af8f4b0a097ed2e5a7b01eba654cd7e29521a79 (patch)
treee1537f2b0b557b997b0145f7055fdc590ae5f97a /lib/msun
parentd177e521098a79866164f04c9c5f238c97562ed3 (diff)
downloadFreeBSD-src-4af8f4b0a097ed2e5a7b01eba654cd7e29521a79.zip
FreeBSD-src-4af8f4b0a097ed2e5a7b01eba654cd7e29521a79.tar.gz
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
Diffstat (limited to 'lib/msun')
-rw-r--r--lib/msun/src/e_j0.c2
-rw-r--r--lib/msun/src/e_j0f.c2
-rw-r--r--lib/msun/src/e_j1.c2
-rw-r--r--lib/msun/src/e_j1f.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/msun/src/e_j0.c b/lib/msun/src/e_j0.c
index 365ffe5..a253ed1 100644
--- a/lib/msun/src/e_j0.c
+++ b/lib/msun/src/e_j0.c
@@ -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;
diff --git a/lib/msun/src/e_j0f.c b/lib/msun/src/e_j0f.c
index e86ed64..3e2f7e8 100644
--- a/lib/msun/src/e_j0f.c
+++ b/lib/msun/src/e_j0f.c
@@ -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;
diff --git a/lib/msun/src/e_j1.c b/lib/msun/src/e_j1.c
index 4922058..74a7c69 100644
--- a/lib/msun/src/e_j1.c
+++ b/lib/msun/src/e_j1.c
@@ -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;
diff --git a/lib/msun/src/e_j1f.c b/lib/msun/src/e_j1f.c
index c39c548..ec7f381 100644
--- a/lib/msun/src/e_j1f.c
+++ b/lib/msun/src/e_j1f.c
@@ -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;
OpenPOWER on IntegriCloud