From 5b3a5f8343149633884e6b4dd03c1ba6ef3734f1 Mon Sep 17 00:00:00 2001 From: Steve Kargl Date: Sun, 17 May 2015 16:27:06 +0000 Subject: [PATCH] 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 --- lib/msun/src/e_j0.c | 2 +- lib/msun/src/e_j0f.c | 2 +- lib/msun/src/e_j1.c | 2 +- lib/msun/src/e_j1f.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/msun/src/e_j0.c b/lib/msun/src/e_j0.c index 365ffe5ee4bb..a253ed164b79 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 e86ed640b3c4..3e2f7e818c59 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 49220586122c..74a7c69bb4ba 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 c39c548a0a2b..ec7f38101b53 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;