s/rcsid/__FBSDID/

This commit is contained in:
David Schultz 2008-02-22 02:30:36 +00:00
parent fab324dfa4
commit 5aa554c7e5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=176451
79 changed files with 158 additions and 241 deletions

View file

@ -11,9 +11,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_acos(x) /* __ieee754_acos(x)
* Method : * Method :

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -12,9 +12,8 @@
* *
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_acosh(x) /* __ieee754_acosh(x)
* Method : * Method :

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -11,9 +11,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_asin(x) /* __ieee754_asin(x)
* Method : * Method :

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -12,9 +12,8 @@
* *
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_atan2(y,x) /* __ieee754_atan2(y,x)
* Method : * Method :

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -12,9 +12,8 @@
* *
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_atanh(x) /* __ieee754_atanh(x)
* Method : * Method :

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -11,9 +11,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_cosh(x) /* __ieee754_cosh(x)
* Method : * Method :

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_exp(x) /* __ieee754_exp(x)
* Returns the exponential of x. * Returns the exponential of x.

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -11,9 +11,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* /*
* __ieee754_fmod(x,y) * __ieee754_fmod(x,y)

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* /*
* __ieee754_fmodf(x,y) * __ieee754_fmodf(x,y)

View file

@ -12,9 +12,8 @@
* *
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_gamma(x) /* __ieee754_gamma(x)
* Return the logarithm of the Gamma function of x. * Return the logarithm of the Gamma function of x.

View file

@ -12,9 +12,8 @@
* *
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_gamma_r(x, signgamp) /* __ieee754_gamma_r(x, signgamp)
* Reentrant version of the logarithm of the Gamma function * Reentrant version of the logarithm of the Gamma function

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_gammaf(x) /* __ieee754_gammaf(x)
* Return the logarithm of the Gamma function of x. * Return the logarithm of the Gamma function of x.

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_gammaf_r(x, signgamp) /* __ieee754_gammaf_r(x, signgamp)
* Reentrant version of the logarithm of the Gamma function * Reentrant version of the logarithm of the Gamma function

View file

@ -11,9 +11,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_j0(x), __ieee754_y0(x) /* __ieee754_j0(x), __ieee754_y0(x)
* Bessel function of the first and second kinds of order zero. * Bessel function of the first and second kinds of order zero.

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -11,9 +11,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_j1(x), __ieee754_y1(x) /* __ieee754_j1(x), __ieee754_y1(x)
* Bessel function of the first and second kinds of order zero. * Bessel function of the first and second kinds of order zero.

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -11,9 +11,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* /*
* __ieee754_jn(n, x), __ieee754_yn(n, x) * __ieee754_jn(n, x), __ieee754_yn(n, x)

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -12,9 +12,8 @@
* *
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_lgamma(x) /* __ieee754_lgamma(x)
* Return the logarithm of the Gamma function of x. * Return the logarithm of the Gamma function of x.

View file

@ -12,9 +12,8 @@
* *
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_lgamma_r(x, signgamp) /* __ieee754_lgamma_r(x, signgamp)
* Reentrant version of the logarithm of the Gamma function * Reentrant version of the logarithm of the Gamma function

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_lgammaf(x) /* __ieee754_lgammaf(x)
* Return the logarithm of the Gamma function of x. * Return the logarithm of the Gamma function of x.

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -11,9 +11,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_log(x) /* __ieee754_log(x)
* Return the logrithm of x * Return the logrithm of x

View file

@ -11,9 +11,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_log10(x) /* __ieee754_log10(x)
* Return the base 10 logarithm of x * Return the base 10 logarithm of x

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -11,9 +11,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* /*
* __ieee754_scalb(x, fn) is provide for * __ieee754_scalb(x, fn) is provide for

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -11,9 +11,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __ieee754_sinh(x) /* __ieee754_sinh(x)
* Method : * Method :

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -15,9 +15,8 @@
*/ */
#ifndef INLINE_KERNEL_COSDF #ifndef INLINE_KERNEL_COSDF
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#endif #endif
#include "math.h" #include "math.h"

View file

@ -15,9 +15,8 @@
*/ */
#ifndef INLINE_KERNEL_SINDF #ifndef INLINE_KERNEL_SINDF
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#endif #endif
#include "math.h" #include "math.h"

View file

@ -11,9 +11,8 @@
*/ */
/* INDENT OFF */ /* INDENT OFF */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* __kernel_tan( x, y, k ) /* __kernel_tan( x, y, k )
* kernel tan function on ~[-pi/4, pi/4] (except on -0), pi/4 ~ 0.7854 * kernel tan function on ~[-pi/4, pi/4] (except on -0), pi/4 ~ 0.7854

View file

@ -14,9 +14,8 @@
*/ */
#ifndef INLINE_KERNEL_TANDF #ifndef INLINE_KERNEL_TANDF
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#endif #endif
#include "math.h" #include "math.h"

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* asinh(x) /* asinh(x)
* Method : * Method :

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* atan(x) /* atan(x)
* Method * Method

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -12,9 +12,8 @@
* Optimized by Bruce D. Evans. * Optimized by Bruce D. Evans.
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -14,9 +14,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* /*
* copysign(double x, double y) * copysign(double x, double y)

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* /*
* copysignf(float x, float y) * copysignf(float x, float y)

View file

@ -14,9 +14,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#define INLINE_KERNEL_COSDF #define INLINE_KERNEL_COSDF

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* double erf(double x) /* double erf(double x)
* double erfc(double x) * double erfc(double x)

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* /*
* fabsf(x) returns the absolute value of x. * fabsf(x) returns the absolute value of x.

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* /*
* finite(x) returns 1 is x is finite, else 0; * finite(x) returns 1 is x is finite, else 0;

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* /*
* finitef(x) returns 1 is x is finite, else 0; * finitef(x) returns 1 is x is finite, else 0;

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* /*
* floorf(x) * floorf(x)

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* /*
* for non-zero x * for non-zero x
@ -24,7 +23,6 @@ static char rcsid[] = "$FreeBSD$";
* with *exp=0. * with *exp=0.
*/ */
#include <sys/cdefs.h>
#include <float.h> #include <float.h>
#include "math.h" #include "math.h"

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* ilogb(double x) /* ilogb(double x)
* return the binary exponent of non-zero x * return the binary exponent of non-zero x

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include <limits.h> #include <limits.h>

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include <float.h> #include <float.h>
#include <limits.h> #include <limits.h>

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* IEEE functions /* IEEE functions
* nextafter(x,y) * nextafter(x,y)
@ -21,7 +20,6 @@ static char rcsid[] = "$FreeBSD$";
* Special cases: * Special cases:
*/ */
#include <sys/cdefs.h>
#include <float.h> #include <float.h>
#include "math.h" #include "math.h"

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* IEEE functions /* IEEE functions
* nextafter(x,y) * nextafter(x,y)
@ -21,7 +20,6 @@ static char rcsid[] = "$FreeBSD$";
* Special cases: * Special cases:
*/ */
#include <sys/cdefs.h>
#include <float.h> #include <float.h>
#include "fpmath.h" #include "fpmath.h"

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* /*
* We assume that a long double has a 15-bit exponent. On systems * We assume that a long double has a 15-bit exponent. On systems

View file

@ -9,9 +9,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include <float.h> #include <float.h>

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* /*
* rint(x) * rint(x)

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include <float.h> #include <float.h>
#include <stdint.h> #include <stdint.h>

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* /*
* significand(x) computes just * significand(x) computes just

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -14,9 +14,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#define INLINE_KERNEL_COSDF #define INLINE_KERNEL_COSDF

View file

@ -14,9 +14,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#define INLINE_KERNEL_TANDF #define INLINE_KERNEL_TANDF

View file

@ -10,9 +10,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
/* Tanh(x) /* Tanh(x)
* Return the Hyperbolic Tangent of x * Return the Hyperbolic Tangent of x

View file

@ -13,9 +13,8 @@
* ==================================================== * ====================================================
*/ */
#ifndef lint #include <sys/cdefs.h>
static char rcsid[] = "$FreeBSD$"; __FBSDID("$FreeBSD$");
#endif
#include "math.h" #include "math.h"
#include "math_private.h" #include "math_private.h"

View file

@ -5,10 +5,8 @@
* Placed into the Public Domain, 1994. * Placed into the Public Domain, 1994.
*/ */
#ifndef lint #include <sys/cdefs.h>
static const char rcsid[] = __FBSDID("$FreeBSD$");
"$FreeBSD$";
#endif /* not lint */
#include <complex.h> #include <complex.h>
#include <math.h> #include <math.h>