diff options
author | ed <ed@FreeBSD.org> | 2009-06-03 08:16:34 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2009-06-03 08:16:34 +0000 |
commit | b51e9aaf240c98d36726ac5aab7b0edf17ffcec7 (patch) | |
tree | 16aa6a4333e2c0dd7e361d0970cdcef053d6fcce /lib/msun/src/k_tanf.c | |
parent | 81faf87a47085ec201126dfc2517c052fd878b14 (diff) | |
download | FreeBSD-src-b51e9aaf240c98d36726ac5aab7b0edf17ffcec7.zip FreeBSD-src-b51e9aaf240c98d36726ac5aab7b0edf17ffcec7.tar.gz |
Use ISO C99 style inline semantics in msun.
Because we use ISO C99 nowadays, we can just get rid of enforcing
GNU89-style inlining.
Diffstat (limited to 'lib/msun/src/k_tanf.c')
-rw-r--r-- | lib/msun/src/k_tanf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/msun/src/k_tanf.c b/lib/msun/src/k_tanf.c index d8b1ebf..6b073da 100644 --- a/lib/msun/src/k_tanf.c +++ b/lib/msun/src/k_tanf.c @@ -32,10 +32,10 @@ T[] = { 0x1362b9bf971bcd.0p-59, /* 0.00946564784943673166728 */ }; -#ifdef INLINE_KERNEL_TANDF -extern __gnu89_inline +#ifndef INLINE_KERNEL_TANDF +extern #endif -float +__inline float __kernel_tandf(double x, int iy) { double z,r,w,s,t,u; |