git: 83c9481db962 - stable/14 - libc: remove some obsolete VCS data

From: Brooks Davis <brooks_at_FreeBSD.org>
Date: Wed, 13 Dec 2023 23:22:52 UTC
The branch stable/14 has been updated by brooks:

URL: https://cgit.FreeBSD.org/src/commit/?id=83c9481db962fd8a9e37fcabcc5ef15d1baf1704

commit 83c9481db962fd8a9e37fcabcc5ef15d1baf1704
Author:     Brooks Davis <brooks@FreeBSD.org>
AuthorDate: 2023-11-21 22:46:43 +0000
Commit:     Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2023-12-13 23:08:50 +0000

    libc: remove some obsolete VCS data
    
    These wide char support files were copied from the previous versions
    with expanded $FreeBSD$ strings in #if 0 blocks.  Remove them and the
    scssid definitions in the same #if 0 blocks.
    
    Reviewed by:    imp
    Differential Revision:  https://reviews.freebsd.org/D42688
    
    (cherry picked from commit 9fc0ff9d85b1497b45a4c6d74e0bc7eea9dcf37b)
---
 lib/libc/locale/wcstoimax.c | 6 ------
 lib/libc/locale/wcstoll.c   | 6 ------
 lib/libc/locale/wcstoull.c  | 6 ------
 lib/libc/locale/wcstoumax.c | 6 ------
 lib/libc/stdio/vswprintf.c  | 3 ---
 lib/libc/stdio/vswscanf.c   | 6 ------
 6 files changed, 33 deletions(-)

diff --git a/lib/libc/locale/wcstoimax.c b/lib/libc/locale/wcstoimax.c
index 2c0997e7ea91..29e12f809812 100644
--- a/lib/libc/locale/wcstoimax.c
+++ b/lib/libc/locale/wcstoimax.c
@@ -34,12 +34,6 @@
  * SUCH DAMAGE.
  */
 
-#if 0
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "from @(#)strtol.c	8.1 (Berkeley) 6/4/93";
-#endif /* LIBC_SCCS and not lint */
-__FBSDID("FreeBSD: src/lib/libc/stdlib/strtoimax.c,v 1.8 2002/09/06 11:23:59 tjr Exp ");
-#endif
 #include <errno.h>
 #include <inttypes.h>
 #include <stdlib.h>
diff --git a/lib/libc/locale/wcstoll.c b/lib/libc/locale/wcstoll.c
index 1712c6be3f56..01ee701af016 100644
--- a/lib/libc/locale/wcstoll.c
+++ b/lib/libc/locale/wcstoll.c
@@ -34,12 +34,6 @@
  * SUCH DAMAGE.
  */
 
-#if 0
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strtoq.c	8.1 (Berkeley) 6/4/93";
-#endif /* LIBC_SCCS and not lint */
-__FBSDID("FreeBSD: src/lib/libc/stdlib/strtoll.c,v 1.19 2002/09/06 11:23:59 tjr Exp ");
-#endif
 #include <errno.h>
 #include <limits.h>
 #include <stdlib.h>
diff --git a/lib/libc/locale/wcstoull.c b/lib/libc/locale/wcstoull.c
index b2edd3d9cea1..db77acd2a55d 100644
--- a/lib/libc/locale/wcstoull.c
+++ b/lib/libc/locale/wcstoull.c
@@ -34,12 +34,6 @@
  * SUCH DAMAGE.
  */
 
-#if 0
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strtouq.c	8.1 (Berkeley) 6/4/93";
-#endif /* LIBC_SCCS and not lint */
-__FBSDID("FreeBSD: src/lib/libc/stdlib/strtoull.c,v 1.18 2002/09/06 11:23:59 tjr Exp ");
-#endif
 #include <errno.h>
 #include <limits.h>
 #include <stdlib.h>
diff --git a/lib/libc/locale/wcstoumax.c b/lib/libc/locale/wcstoumax.c
index bf517965ba3e..6a3861618e3e 100644
--- a/lib/libc/locale/wcstoumax.c
+++ b/lib/libc/locale/wcstoumax.c
@@ -34,12 +34,6 @@
  * SUCH DAMAGE.
  */
 
-#if 0
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "from @(#)strtoul.c	8.1 (Berkeley) 6/4/93";
-#endif /* LIBC_SCCS and not lint */
-__FBSDID("FreeBSD: src/lib/libc/stdlib/strtoumax.c,v 1.8 2002/09/06 11:23:59 tjr Exp ");
-#endif
 #include <errno.h>
 #include <inttypes.h>
 #include <stdlib.h>
diff --git a/lib/libc/stdio/vswprintf.c b/lib/libc/stdio/vswprintf.c
index d8c1d6720ebe..e90a05c4cc14 100644
--- a/lib/libc/stdio/vswprintf.c
+++ b/lib/libc/stdio/vswprintf.c
@@ -34,9 +34,6 @@
  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#if 0
-__FBSDID("FreeBSD: src/lib/libc/stdio/vasprintf.c,v 1.16 2002/08/21 16:19:57 mike Exp ");
-#endif
 #include <errno.h>
 #include <limits.h>
 #include <stdio.h>
diff --git a/lib/libc/stdio/vswscanf.c b/lib/libc/stdio/vswscanf.c
index 8fecb81f96bb..be21f4a53f7b 100644
--- a/lib/libc/stdio/vswscanf.c
+++ b/lib/libc/stdio/vswscanf.c
@@ -37,12 +37,6 @@
  * SUCH DAMAGE.
  */
 
-#if 0
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)vsscanf.c	8.1 (Berkeley) 6/4/93";
-#endif /* LIBC_SCCS and not lint */
-__FBSDID("FreeBSD: src/lib/libc/stdio/vsscanf.c,v 1.11 2002/08/21 16:19:57 mike Exp ");
-#endif
 #include <limits.h>
 #include <stdarg.h>
 #include <stdio.h>