diff options
author | kargl <kargl@FreeBSD.org> | 2015-05-17 16:27:06 +0000 |
---|---|---|
committer | kargl <kargl@FreeBSD.org> | 2015-05-17 16:27:06 +0000 |
commit | 4af8f4b0a097ed2e5a7b01eba654cd7e29521a79 (patch) | |
tree | e1537f2b0b557b997b0145f7055fdc590ae5f97a /lib/msun/src/e_j0.c | |
parent | d177e521098a79866164f04c9c5f238c97562ed3 (diff) | |
download | FreeBSD-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/src/e_j0.c')
-rw-r--r-- | lib/msun/src/e_j0.c | 2 |
1 files changed, 1 insertions, 1 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; |