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
This commit is contained in:
Steve Kargl 2015-05-17 16:27:06 +00:00
parent 76da95eba4
commit 5b3a5f8343
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=283032
4 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;