diff options
author | dillon <dillon@FreeBSD.org> | 2001-09-30 21:53:45 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 2001-09-30 21:53:45 +0000 |
commit | f844085713fa5e8c5e9206da521f47e8cc6e1833 (patch) | |
tree | ff3ac6f850f205e1d1126cce6b843d1b1e473943 /lib/libm/ieee | |
parent | 863b71fe4ce76dcf41dc6a2e4127c1cce9786c94 (diff) | |
download | FreeBSD-src-f844085713fa5e8c5e9206da521f47e8cc6e1833.zip FreeBSD-src-f844085713fa5e8c5e9206da521f47e8cc6e1833.tar.gz |
Add __FBSDID()s to libm
Diffstat (limited to 'lib/libm/ieee')
-rw-r--r-- | lib/libm/ieee/cabs.c | 3 | ||||
-rw-r--r-- | lib/libm/ieee/cbrt.c | 5 | ||||
-rw-r--r-- | lib/libm/ieee/support.c | 3 |
3 files changed, 9 insertions, 2 deletions
diff --git a/lib/libm/ieee/cabs.c b/lib/libm/ieee/cabs.c index 5f1fc62..5b84530 100644 --- a/lib/libm/ieee/cabs.c +++ b/lib/libm/ieee/cabs.c @@ -31,6 +31,9 @@ * SUCH DAMAGE. */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #ifndef lint static char sccsid[] = "@(#)cabs.c 8.1 (Berkeley) 6/4/93"; #endif /* not lint */ diff --git a/lib/libm/ieee/cbrt.c b/lib/libm/ieee/cbrt.c index 6d73779..425a7af 100644 --- a/lib/libm/ieee/cbrt.c +++ b/lib/libm/ieee/cbrt.c @@ -31,12 +31,13 @@ * SUCH DAMAGE. */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #ifndef lint static char sccsid[] = "@(#)cbrt.c 8.1 (Berkeley) 6/4/93"; #endif /* not lint */ -#include <sys/cdefs.h> - /* kahan's cube root (53 bits IEEE double precision) * for IEEE machines only * coded in C by K.C. Ng, 4/30/85 diff --git a/lib/libm/ieee/support.c b/lib/libm/ieee/support.c index 0ae10bb..f7bda5a 100644 --- a/lib/libm/ieee/support.c +++ b/lib/libm/ieee/support.c @@ -31,6 +31,9 @@ * SUCH DAMAGE. */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #ifndef lint static char sccsid[] = "@(#)support.c 8.1 (Berkeley) 6/4/93"; #endif /* not lint */ |