From 8b6c2ddfd4e42d7cc12dd234602325a120f13ad3 Mon Sep 17 00:00:00 2001 From: das Date: Fri, 22 Feb 2008 02:30:36 +0000 Subject: s/rcsid/__FBSDID/ --- lib/msun/src/e_acos.c | 5 ++--- lib/msun/src/e_acosf.c | 5 ++--- lib/msun/src/e_acosh.c | 5 ++--- lib/msun/src/e_acoshf.c | 5 ++--- lib/msun/src/e_asin.c | 5 ++--- lib/msun/src/e_asinf.c | 5 ++--- lib/msun/src/e_atan2.c | 5 ++--- lib/msun/src/e_atan2f.c | 5 ++--- lib/msun/src/e_atanh.c | 5 ++--- lib/msun/src/e_atanhf.c | 5 ++--- lib/msun/src/e_cosh.c | 5 ++--- lib/msun/src/e_coshf.c | 5 ++--- lib/msun/src/e_exp.c | 5 ++--- lib/msun/src/e_expf.c | 5 ++--- lib/msun/src/e_fmod.c | 5 ++--- lib/msun/src/e_fmodf.c | 5 ++--- lib/msun/src/e_gamma.c | 5 ++--- lib/msun/src/e_gamma_r.c | 5 ++--- lib/msun/src/e_gammaf.c | 5 ++--- lib/msun/src/e_gammaf_r.c | 5 ++--- lib/msun/src/e_j0.c | 5 ++--- lib/msun/src/e_j0f.c | 5 ++--- lib/msun/src/e_j1.c | 5 ++--- lib/msun/src/e_j1f.c | 5 ++--- lib/msun/src/e_jn.c | 5 ++--- lib/msun/src/e_jnf.c | 5 ++--- lib/msun/src/e_lgamma.c | 5 ++--- lib/msun/src/e_lgamma_r.c | 5 ++--- lib/msun/src/e_lgammaf.c | 5 ++--- lib/msun/src/e_lgammaf_r.c | 5 ++--- lib/msun/src/e_log.c | 5 ++--- lib/msun/src/e_log10.c | 5 ++--- lib/msun/src/e_log10f.c | 5 ++--- lib/msun/src/e_logf.c | 5 ++--- lib/msun/src/e_scalb.c | 5 ++--- lib/msun/src/e_scalbf.c | 5 ++--- lib/msun/src/e_sinh.c | 5 ++--- lib/msun/src/e_sinhf.c | 5 ++--- lib/msun/src/k_cosf.c | 5 ++--- lib/msun/src/k_sinf.c | 5 ++--- lib/msun/src/k_tan.c | 5 ++--- lib/msun/src/k_tanf.c | 5 ++--- lib/msun/src/s_asinh.c | 5 ++--- lib/msun/src/s_asinhf.c | 5 ++--- lib/msun/src/s_atan.c | 5 ++--- lib/msun/src/s_atanf.c | 5 ++--- lib/msun/src/s_cbrt.c | 5 ++--- lib/msun/src/s_cbrtf.c | 5 ++--- lib/msun/src/s_ceilf.c | 5 ++--- lib/msun/src/s_copysign.c | 5 ++--- lib/msun/src/s_copysignf.c | 5 ++--- lib/msun/src/s_cosf.c | 5 ++--- lib/msun/src/s_erf.c | 5 ++--- lib/msun/src/s_erff.c | 5 ++--- lib/msun/src/s_fabsf.c | 5 ++--- lib/msun/src/s_finite.c | 5 ++--- lib/msun/src/s_finitef.c | 5 ++--- lib/msun/src/s_floorf.c | 5 ++--- lib/msun/src/s_frexp.c | 6 ++---- lib/msun/src/s_frexpf.c | 5 ++--- lib/msun/src/s_ilogb.c | 5 ++--- lib/msun/src/s_ilogbf.c | 5 ++--- lib/msun/src/s_ilogbl.c | 5 ++--- lib/msun/src/s_logbf.c | 5 ++--- lib/msun/src/s_modff.c | 5 ++--- lib/msun/src/s_nextafter.c | 6 ++---- lib/msun/src/s_nextafterf.c | 5 ++--- lib/msun/src/s_nextafterl.c | 6 ++---- lib/msun/src/s_nexttoward.c | 5 ++--- lib/msun/src/s_nexttowardf.c | 5 ++--- lib/msun/src/s_rint.c | 5 ++--- lib/msun/src/s_rintf.c | 5 ++--- lib/msun/src/s_significand.c | 5 ++--- lib/msun/src/s_significandf.c | 5 ++--- lib/msun/src/s_sinf.c | 5 ++--- lib/msun/src/s_tanf.c | 5 ++--- lib/msun/src/s_tanh.c | 5 ++--- lib/msun/src/s_tanhf.c | 5 ++--- lib/msun/src/w_cabs.c | 6 ++---- 79 files changed, 158 insertions(+), 241 deletions(-) (limited to 'lib/msun') diff --git a/lib/msun/src/e_acos.c b/lib/msun/src/e_acos.c index b021a1e..78fd582 100644 --- a/lib/msun/src/e_acos.c +++ b/lib/msun/src/e_acos.c @@ -11,9 +11,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_acos(x) * Method : diff --git a/lib/msun/src/e_acosf.c b/lib/msun/src/e_acosf.c index 0688edf..7a9d0d5 100644 --- a/lib/msun/src/e_acosf.c +++ b/lib/msun/src/e_acosf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/e_acosh.c b/lib/msun/src/e_acosh.c index 25e11c3..a0cc6cb 100644 --- a/lib/msun/src/e_acosh.c +++ b/lib/msun/src/e_acosh.c @@ -12,9 +12,8 @@ * */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_acosh(x) * Method : diff --git a/lib/msun/src/e_acoshf.c b/lib/msun/src/e_acoshf.c index 5138d72..f529b20 100644 --- a/lib/msun/src/e_acoshf.c +++ b/lib/msun/src/e_acoshf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/e_asin.c b/lib/msun/src/e_asin.c index 044c1be..149a533 100644 --- a/lib/msun/src/e_asin.c +++ b/lib/msun/src/e_asin.c @@ -11,9 +11,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_asin(x) * Method : diff --git a/lib/msun/src/e_asinf.c b/lib/msun/src/e_asinf.c index c0cf8a4..f830878 100644 --- a/lib/msun/src/e_asinf.c +++ b/lib/msun/src/e_asinf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/e_atan2.c b/lib/msun/src/e_atan2.c index a05a840..37c62c1 100644 --- a/lib/msun/src/e_atan2.c +++ b/lib/msun/src/e_atan2.c @@ -12,9 +12,8 @@ * */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_atan2(y,x) * Method : diff --git a/lib/msun/src/e_atan2f.c b/lib/msun/src/e_atan2f.c index af011318..b6d336d 100644 --- a/lib/msun/src/e_atan2f.c +++ b/lib/msun/src/e_atan2f.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/e_atanh.c b/lib/msun/src/e_atanh.c index 9a89669..ab8a2e1 100644 --- a/lib/msun/src/e_atanh.c +++ b/lib/msun/src/e_atanh.c @@ -12,9 +12,8 @@ * */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_atanh(x) * Method : diff --git a/lib/msun/src/e_atanhf.c b/lib/msun/src/e_atanhf.c index c7cf3e0..4bd6a8f 100644 --- a/lib/msun/src/e_atanhf.c +++ b/lib/msun/src/e_atanhf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/e_cosh.c b/lib/msun/src/e_cosh.c index f8a2b9b..11e6590 100644 --- a/lib/msun/src/e_cosh.c +++ b/lib/msun/src/e_cosh.c @@ -11,9 +11,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_cosh(x) * Method : diff --git a/lib/msun/src/e_coshf.c b/lib/msun/src/e_coshf.c index ebd659e..4a1d499 100644 --- a/lib/msun/src/e_coshf.c +++ b/lib/msun/src/e_coshf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/e_exp.c b/lib/msun/src/e_exp.c index bcc98ff..5b9a10c 100644 --- a/lib/msun/src/e_exp.c +++ b/lib/msun/src/e_exp.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_exp(x) * Returns the exponential of x. diff --git a/lib/msun/src/e_expf.c b/lib/msun/src/e_expf.c index 45eda01..5f46492 100644 --- a/lib/msun/src/e_expf.c +++ b/lib/msun/src/e_expf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/e_fmod.c b/lib/msun/src/e_fmod.c index b731ce1..720aa03 100644 --- a/lib/msun/src/e_fmod.c +++ b/lib/msun/src/e_fmod.c @@ -11,9 +11,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* * __ieee754_fmod(x,y) diff --git a/lib/msun/src/e_fmodf.c b/lib/msun/src/e_fmodf.c index e3865c4..52ce373 100644 --- a/lib/msun/src/e_fmodf.c +++ b/lib/msun/src/e_fmodf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* * __ieee754_fmodf(x,y) diff --git a/lib/msun/src/e_gamma.c b/lib/msun/src/e_gamma.c index e3ebd7c..28fb5cc 100644 --- a/lib/msun/src/e_gamma.c +++ b/lib/msun/src/e_gamma.c @@ -12,9 +12,8 @@ * */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_gamma(x) * Return the logarithm of the Gamma function of x. diff --git a/lib/msun/src/e_gamma_r.c b/lib/msun/src/e_gamma_r.c index 48b981a..2c423dc 100644 --- a/lib/msun/src/e_gamma_r.c +++ b/lib/msun/src/e_gamma_r.c @@ -12,9 +12,8 @@ * */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_gamma_r(x, signgamp) * Reentrant version of the logarithm of the Gamma function diff --git a/lib/msun/src/e_gammaf.c b/lib/msun/src/e_gammaf.c index da31d9f..c1b1668 100644 --- a/lib/msun/src/e_gammaf.c +++ b/lib/msun/src/e_gammaf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_gammaf(x) * Return the logarithm of the Gamma function of x. diff --git a/lib/msun/src/e_gammaf_r.c b/lib/msun/src/e_gammaf_r.c index c14870d..9d7831b 100644 --- a/lib/msun/src/e_gammaf_r.c +++ b/lib/msun/src/e_gammaf_r.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_gammaf_r(x, signgamp) * Reentrant version of the logarithm of the Gamma function diff --git a/lib/msun/src/e_j0.c b/lib/msun/src/e_j0.c index 493f0ef..8320f25 100644 --- a/lib/msun/src/e_j0.c +++ b/lib/msun/src/e_j0.c @@ -11,9 +11,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_j0(x), __ieee754_y0(x) * Bessel function of the first and second kinds of order zero. diff --git a/lib/msun/src/e_j0f.c b/lib/msun/src/e_j0f.c index 6d98582..c45faf3 100644 --- a/lib/msun/src/e_j0f.c +++ b/lib/msun/src/e_j0f.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/e_j1.c b/lib/msun/src/e_j1.c index a01b812..63800ad 100644 --- a/lib/msun/src/e_j1.c +++ b/lib/msun/src/e_j1.c @@ -11,9 +11,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_j1(x), __ieee754_y1(x) * Bessel function of the first and second kinds of order zero. diff --git a/lib/msun/src/e_j1f.c b/lib/msun/src/e_j1f.c index 6ccc0697..88e2d83 100644 --- a/lib/msun/src/e_j1f.c +++ b/lib/msun/src/e_j1f.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/e_jn.c b/lib/msun/src/e_jn.c index ca26230..e277e30 100644 --- a/lib/msun/src/e_jn.c +++ b/lib/msun/src/e_jn.c @@ -11,9 +11,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* * __ieee754_jn(n, x), __ieee754_yn(n, x) diff --git a/lib/msun/src/e_jnf.c b/lib/msun/src/e_jnf.c index 17a7008..541cc8c 100644 --- a/lib/msun/src/e_jnf.c +++ b/lib/msun/src/e_jnf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/e_lgamma.c b/lib/msun/src/e_lgamma.c index 39d3f85..4674d9b 100644 --- a/lib/msun/src/e_lgamma.c +++ b/lib/msun/src/e_lgamma.c @@ -12,9 +12,8 @@ * */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_lgamma(x) * Return the logarithm of the Gamma function of x. diff --git a/lib/msun/src/e_lgamma_r.c b/lib/msun/src/e_lgamma_r.c index 7f2767f..a587b8f 100644 --- a/lib/msun/src/e_lgamma_r.c +++ b/lib/msun/src/e_lgamma_r.c @@ -12,9 +12,8 @@ * */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_lgamma_r(x, signgamp) * Reentrant version of the logarithm of the Gamma function diff --git a/lib/msun/src/e_lgammaf.c b/lib/msun/src/e_lgammaf.c index 4fcf943..1e2c552 100644 --- a/lib/msun/src/e_lgammaf.c +++ b/lib/msun/src/e_lgammaf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_lgammaf(x) * Return the logarithm of the Gamma function of x. diff --git a/lib/msun/src/e_lgammaf_r.c b/lib/msun/src/e_lgammaf_r.c index 12bcaa3..47c6ed0 100644 --- a/lib/msun/src/e_lgammaf_r.c +++ b/lib/msun/src/e_lgammaf_r.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/e_log.c b/lib/msun/src/e_log.c index ed3c401..fd91aa8 100644 --- a/lib/msun/src/e_log.c +++ b/lib/msun/src/e_log.c @@ -11,9 +11,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_log(x) * Return the logrithm of x diff --git a/lib/msun/src/e_log10.c b/lib/msun/src/e_log10.c index 871a44a..7871b5e 100644 --- a/lib/msun/src/e_log10.c +++ b/lib/msun/src/e_log10.c @@ -11,9 +11,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_log10(x) * Return the base 10 logarithm of x diff --git a/lib/msun/src/e_log10f.c b/lib/msun/src/e_log10f.c index beb2271..a0b1618 100644 --- a/lib/msun/src/e_log10f.c +++ b/lib/msun/src/e_log10f.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/e_logf.c b/lib/msun/src/e_logf.c index 175c955..654c1e2 100644 --- a/lib/msun/src/e_logf.c +++ b/lib/msun/src/e_logf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/e_scalb.c b/lib/msun/src/e_scalb.c index f7d46d0..c0a7b5b 100644 --- a/lib/msun/src/e_scalb.c +++ b/lib/msun/src/e_scalb.c @@ -11,9 +11,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* * __ieee754_scalb(x, fn) is provide for diff --git a/lib/msun/src/e_scalbf.c b/lib/msun/src/e_scalbf.c index e0e7c02..d49e904 100644 --- a/lib/msun/src/e_scalbf.c +++ b/lib/msun/src/e_scalbf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/e_sinh.c b/lib/msun/src/e_sinh.c index 09b0597..afb8e43 100644 --- a/lib/msun/src/e_sinh.c +++ b/lib/msun/src/e_sinh.c @@ -11,9 +11,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __ieee754_sinh(x) * Method : diff --git a/lib/msun/src/e_sinhf.c b/lib/msun/src/e_sinhf.c index 50388fa..0f96b2b 100644 --- a/lib/msun/src/e_sinhf.c +++ b/lib/msun/src/e_sinhf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/k_cosf.c b/lib/msun/src/k_cosf.c index 6a0afe9..30c301a 100644 --- a/lib/msun/src/k_cosf.c +++ b/lib/msun/src/k_cosf.c @@ -15,9 +15,8 @@ */ #ifndef INLINE_KERNEL_COSDF -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #endif #include "math.h" diff --git a/lib/msun/src/k_sinf.c b/lib/msun/src/k_sinf.c index 79f32a1..e390b50 100644 --- a/lib/msun/src/k_sinf.c +++ b/lib/msun/src/k_sinf.c @@ -15,9 +15,8 @@ */ #ifndef INLINE_KERNEL_SINDF -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #endif #include "math.h" diff --git a/lib/msun/src/k_tan.c b/lib/msun/src/k_tan.c index 13737d0..2e86c3b 100644 --- a/lib/msun/src/k_tan.c +++ b/lib/msun/src/k_tan.c @@ -11,9 +11,8 @@ */ /* INDENT OFF */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* __kernel_tan( x, y, k ) * kernel tan function on ~[-pi/4, pi/4] (except on -0), pi/4 ~ 0.7854 diff --git a/lib/msun/src/k_tanf.c b/lib/msun/src/k_tanf.c index bdda30a..f8152e2 100644 --- a/lib/msun/src/k_tanf.c +++ b/lib/msun/src/k_tanf.c @@ -14,9 +14,8 @@ */ #ifndef INLINE_KERNEL_TANDF -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #endif #include "math.h" diff --git a/lib/msun/src/s_asinh.c b/lib/msun/src/s_asinh.c index 95a539d..f3fdf74 100644 --- a/lib/msun/src/s_asinh.c +++ b/lib/msun/src/s_asinh.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* asinh(x) * Method : diff --git a/lib/msun/src/s_asinhf.c b/lib/msun/src/s_asinhf.c index 6dcfc5b..c1620dd 100644 --- a/lib/msun/src/s_asinhf.c +++ b/lib/msun/src/s_asinhf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/s_atan.c b/lib/msun/src/s_atan.c index 5ef6700..4b0ab89 100644 --- a/lib/msun/src/s_atan.c +++ b/lib/msun/src/s_atan.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* atan(x) * Method diff --git a/lib/msun/src/s_atanf.c b/lib/msun/src/s_atanf.c index d4a500f..7990c64 100644 --- a/lib/msun/src/s_atanf.c +++ b/lib/msun/src/s_atanf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/s_cbrt.c b/lib/msun/src/s_cbrt.c index 545b0e7..2c70980 100644 --- a/lib/msun/src/s_cbrt.c +++ b/lib/msun/src/s_cbrt.c @@ -12,9 +12,8 @@ * Optimized by Bruce D. Evans. */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/s_cbrtf.c b/lib/msun/src/s_cbrtf.c index ea7b3cd..454f974 100644 --- a/lib/msun/src/s_cbrtf.c +++ b/lib/msun/src/s_cbrtf.c @@ -14,9 +14,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/s_ceilf.c b/lib/msun/src/s_ceilf.c index 96a0f48..23bfe04 100644 --- a/lib/msun/src/s_ceilf.c +++ b/lib/msun/src/s_ceilf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/s_copysign.c b/lib/msun/src/s_copysign.c index 7b0fc38..a5f3870 100644 --- a/lib/msun/src/s_copysign.c +++ b/lib/msun/src/s_copysign.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* * copysign(double x, double y) diff --git a/lib/msun/src/s_copysignf.c b/lib/msun/src/s_copysignf.c index df5304f..05ca1e3 100644 --- a/lib/msun/src/s_copysignf.c +++ b/lib/msun/src/s_copysignf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* * copysignf(float x, float y) diff --git a/lib/msun/src/s_cosf.c b/lib/msun/src/s_cosf.c index b800a8e..2d65ee9 100644 --- a/lib/msun/src/s_cosf.c +++ b/lib/msun/src/s_cosf.c @@ -14,9 +14,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #define INLINE_KERNEL_COSDF diff --git a/lib/msun/src/s_erf.c b/lib/msun/src/s_erf.c index 8461425..0886e5e 100644 --- a/lib/msun/src/s_erf.c +++ b/lib/msun/src/s_erf.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* double erf(double x) * double erfc(double x) diff --git a/lib/msun/src/s_erff.c b/lib/msun/src/s_erff.c index 6bb24cf..a44e135 100644 --- a/lib/msun/src/s_erff.c +++ b/lib/msun/src/s_erff.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/s_fabsf.c b/lib/msun/src/s_fabsf.c index 6b7d0a1..e9383d0 100644 --- a/lib/msun/src/s_fabsf.c +++ b/lib/msun/src/s_fabsf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* * fabsf(x) returns the absolute value of x. diff --git a/lib/msun/src/s_finite.c b/lib/msun/src/s_finite.c index 8e7c175..4c51352 100644 --- a/lib/msun/src/s_finite.c +++ b/lib/msun/src/s_finite.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* * finite(x) returns 1 is x is finite, else 0; diff --git a/lib/msun/src/s_finitef.c b/lib/msun/src/s_finitef.c index a8ccb92..c62239e 100644 --- a/lib/msun/src/s_finitef.c +++ b/lib/msun/src/s_finitef.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* * finitef(x) returns 1 is x is finite, else 0; diff --git a/lib/msun/src/s_floorf.c b/lib/msun/src/s_floorf.c index d4bb6c5..6b510de 100644 --- a/lib/msun/src/s_floorf.c +++ b/lib/msun/src/s_floorf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* * floorf(x) diff --git a/lib/msun/src/s_frexp.c b/lib/msun/src/s_frexp.c index 1b5b9bd..318a991 100644 --- a/lib/msun/src/s_frexp.c +++ b/lib/msun/src/s_frexp.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* * for non-zero x @@ -24,7 +23,6 @@ static char rcsid[] = "$FreeBSD$"; * with *exp=0. */ -#include #include #include "math.h" diff --git a/lib/msun/src/s_frexpf.c b/lib/msun/src/s_frexpf.c index 477807b..5a7c486 100644 --- a/lib/msun/src/s_frexpf.c +++ b/lib/msun/src/s_frexpf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/s_ilogb.c b/lib/msun/src/s_ilogb.c index 69077af..a930bc9 100644 --- a/lib/msun/src/s_ilogb.c +++ b/lib/msun/src/s_ilogb.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* ilogb(double x) * return the binary exponent of non-zero x diff --git a/lib/msun/src/s_ilogbf.c b/lib/msun/src/s_ilogbf.c index ff58813..93fe295 100644 --- a/lib/msun/src/s_ilogbf.c +++ b/lib/msun/src/s_ilogbf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include diff --git a/lib/msun/src/s_ilogbl.c b/lib/msun/src/s_ilogbl.c index a6a4708..3211f44 100644 --- a/lib/msun/src/s_ilogbl.c +++ b/lib/msun/src/s_ilogbl.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include #include diff --git a/lib/msun/src/s_logbf.c b/lib/msun/src/s_logbf.c index 97ccd02..3ab190d 100644 --- a/lib/msun/src/s_logbf.c +++ b/lib/msun/src/s_logbf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/s_modff.c b/lib/msun/src/s_modff.c index 4436764..062259c 100644 --- a/lib/msun/src/s_modff.c +++ b/lib/msun/src/s_modff.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/s_nextafter.c b/lib/msun/src/s_nextafter.c index 674e9c1..52dd21c 100644 --- a/lib/msun/src/s_nextafter.c +++ b/lib/msun/src/s_nextafter.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* IEEE functions * nextafter(x,y) @@ -21,7 +20,6 @@ static char rcsid[] = "$FreeBSD$"; * Special cases: */ -#include #include #include "math.h" diff --git a/lib/msun/src/s_nextafterf.c b/lib/msun/src/s_nextafterf.c index b8a1125..96e21ef 100644 --- a/lib/msun/src/s_nextafterf.c +++ b/lib/msun/src/s_nextafterf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/s_nextafterl.c b/lib/msun/src/s_nextafterl.c index a74dd79..9c61a43 100644 --- a/lib/msun/src/s_nextafterl.c +++ b/lib/msun/src/s_nextafterl.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* IEEE functions * nextafter(x,y) @@ -21,7 +20,6 @@ static char rcsid[] = "$FreeBSD$"; * Special cases: */ -#include #include #include "fpmath.h" diff --git a/lib/msun/src/s_nexttoward.c b/lib/msun/src/s_nexttoward.c index a493c83..52ae1ac 100644 --- a/lib/msun/src/s_nexttoward.c +++ b/lib/msun/src/s_nexttoward.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* * We assume that a long double has a 15-bit exponent. On systems diff --git a/lib/msun/src/s_nexttowardf.c b/lib/msun/src/s_nexttowardf.c index 38005ae..7c0d7b1 100644 --- a/lib/msun/src/s_nexttowardf.c +++ b/lib/msun/src/s_nexttowardf.c @@ -9,9 +9,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include diff --git a/lib/msun/src/s_rint.c b/lib/msun/src/s_rint.c index 571c17e..c56f8fb 100644 --- a/lib/msun/src/s_rint.c +++ b/lib/msun/src/s_rint.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* * rint(x) diff --git a/lib/msun/src/s_rintf.c b/lib/msun/src/s_rintf.c index ce8b786..f8743a4 100644 --- a/lib/msun/src/s_rintf.c +++ b/lib/msun/src/s_rintf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include #include diff --git a/lib/msun/src/s_significand.c b/lib/msun/src/s_significand.c index a91bcde..356e300 100644 --- a/lib/msun/src/s_significand.c +++ b/lib/msun/src/s_significand.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* * significand(x) computes just diff --git a/lib/msun/src/s_significandf.c b/lib/msun/src/s_significandf.c index c11a089..ad030e2 100644 --- a/lib/msun/src/s_significandf.c +++ b/lib/msun/src/s_significandf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/s_sinf.c b/lib/msun/src/s_sinf.c index 5842014..5da246e 100644 --- a/lib/msun/src/s_sinf.c +++ b/lib/msun/src/s_sinf.c @@ -14,9 +14,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #define INLINE_KERNEL_COSDF diff --git a/lib/msun/src/s_tanf.c b/lib/msun/src/s_tanf.c index 9a83555..24f73a7 100644 --- a/lib/msun/src/s_tanf.c +++ b/lib/msun/src/s_tanf.c @@ -14,9 +14,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #define INLINE_KERNEL_TANDF diff --git a/lib/msun/src/s_tanh.c b/lib/msun/src/s_tanh.c index a05ad30..96e3565 100644 --- a/lib/msun/src/s_tanh.c +++ b/lib/msun/src/s_tanh.c @@ -10,9 +10,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); /* Tanh(x) * Return the Hyperbolic Tangent of x diff --git a/lib/msun/src/s_tanhf.c b/lib/msun/src/s_tanhf.c index 8f062c8..04f09c6 100644 --- a/lib/msun/src/s_tanhf.c +++ b/lib/msun/src/s_tanhf.c @@ -13,9 +13,8 @@ * ==================================================== */ -#ifndef lint -static char rcsid[] = "$FreeBSD$"; -#endif +#include +__FBSDID("$FreeBSD$"); #include "math.h" #include "math_private.h" diff --git a/lib/msun/src/w_cabs.c b/lib/msun/src/w_cabs.c index d00e76e..eae6dc0 100644 --- a/lib/msun/src/w_cabs.c +++ b/lib/msun/src/w_cabs.c @@ -5,10 +5,8 @@ * Placed into the Public Domain, 1994. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include +__FBSDID("$FreeBSD$"); #include #include -- cgit v1.1