aboutsummaryrefslogtreecommitdiff
path: root/lib/msun
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2023-09-25 14:54:56 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2023-09-25 14:54:56 +0000
commiteba230afba4932f02a1ca44efc797cf7499a5cb0 (patch)
tree65c67104917802c7e371e323e0d99eaad2d0bd4b /lib/msun
parente4c68414d0854b5e43dfd1b2b0cfbc295702e831 (diff)
downloadsrc-eba230afba4932f02a1ca44efc797cf7499a5cb0.tar.gz
src-eba230afba4932f02a1ca44efc797cf7499a5cb0.zip
Purge more stray embedded $FreeBSD$ strings
These do not use __FBSDID but instead use bare char arrays. Reviewed by: imp, emaste Differential Revision: https://reviews.freebsd.org/D41957
Diffstat (limited to 'lib/msun')
-rw-r--r--lib/msun/src/e_sqrtf.c4
-rw-r--r--lib/msun/src/s_modf.c4
-rw-r--r--lib/msun/src/w_cabsf.c5
3 files changed, 0 insertions, 13 deletions
diff --git a/lib/msun/src/e_sqrtf.c b/lib/msun/src/e_sqrtf.c
index 1fd0cec447fb..f9e2a320f20e 100644
--- a/lib/msun/src/e_sqrtf.c
+++ b/lib/msun/src/e_sqrtf.c
@@ -13,10 +13,6 @@
* ====================================================
*/
-#ifndef lint
-static char rcsid[] = "$FreeBSD$";
-#endif
-
#include "math.h"
#include "math_private.h"
diff --git a/lib/msun/src/s_modf.c b/lib/msun/src/s_modf.c
index ab13191b9004..ffb1702751fa 100644
--- a/lib/msun/src/s_modf.c
+++ b/lib/msun/src/s_modf.c
@@ -10,10 +10,6 @@
* ====================================================
*/
-#ifndef lint
-static char rcsid[] = "$FreeBSD$";
-#endif
-
/*
* modf(double x, double *iptr)
* return fraction part of x, and return x's integral part in *iptr.
diff --git a/lib/msun/src/w_cabsf.c b/lib/msun/src/w_cabsf.c
index b5065c8a5683..aedbdef217ca 100644
--- a/lib/msun/src/w_cabsf.c
+++ b/lib/msun/src/w_cabsf.c
@@ -5,11 +5,6 @@
* Placed into the Public Domain, 1994.
*/
-#ifndef lint
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
-
#include <complex.h>
#include <math.h>
#include "math_private.h"