diff options
Diffstat (limited to 'lib/libc/string')
83 files changed, 0 insertions, 166 deletions
diff --git a/lib/libc/string/bcmp.c b/lib/libc/string/bcmp.c index c42fe79ddb2f..0a7c6f0948a6 100644 --- a/lib/libc/string/bcmp.c +++ b/lib/libc/string/bcmp.c @@ -33,8 +33,6 @@ static char sccsid[] = "@(#)bcmp.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <strings.h> /* diff --git a/lib/libc/string/bcopy.c b/lib/libc/string/bcopy.c index 84715d0432e3..4328542d2d54 100644 --- a/lib/libc/string/bcopy.c +++ b/lib/libc/string/bcopy.c @@ -36,8 +36,6 @@ static char sccsid[] = "@(#)bcopy.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/types.h> typedef intptr_t word; /* "word" used for optimal copy speed */ diff --git a/lib/libc/string/bzero.c b/lib/libc/string/bzero.c index 201bd64f808d..fe149def7930 100644 --- a/lib/libc/string/bzero.c +++ b/lib/libc/string/bzero.c @@ -1,5 +1,3 @@ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #define BZERO #include "memset.c" diff --git a/lib/libc/string/ffs.c b/lib/libc/string/ffs.c index 34140e3e4d85..b318c33f641b 100644 --- a/lib/libc/string/ffs.c +++ b/lib/libc/string/ffs.c @@ -37,8 +37,6 @@ static char sccsid[] = "@(#)ffs.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <strings.h> /* diff --git a/lib/libc/string/ffsl.c b/lib/libc/string/ffsl.c index 701e23cdf8f4..237e62617315 100644 --- a/lib/libc/string/ffsl.c +++ b/lib/libc/string/ffsl.c @@ -34,8 +34,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <strings.h> /* diff --git a/lib/libc/string/ffsll.c b/lib/libc/string/ffsll.c index e94fb518eb03..4fb5ccc4ef7c 100644 --- a/lib/libc/string/ffsll.c +++ b/lib/libc/string/ffsll.c @@ -34,8 +34,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <strings.h> /* diff --git a/lib/libc/string/fls.c b/lib/libc/string/fls.c index 3c4719776778..554b8dc4b413 100644 --- a/lib/libc/string/fls.c +++ b/lib/libc/string/fls.c @@ -34,8 +34,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <limits.h> #include <strings.h> diff --git a/lib/libc/string/flsl.c b/lib/libc/string/flsl.c index f5280b77a4e2..6b881bc39b9e 100644 --- a/lib/libc/string/flsl.c +++ b/lib/libc/string/flsl.c @@ -35,8 +35,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <limits.h> #include <strings.h> diff --git a/lib/libc/string/flsll.c b/lib/libc/string/flsll.c index ab504b8e592f..68d6d52bee4b 100644 --- a/lib/libc/string/flsll.c +++ b/lib/libc/string/flsll.c @@ -34,8 +34,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <limits.h> #include <strings.h> diff --git a/lib/libc/string/memccpy.c b/lib/libc/string/memccpy.c index e4c9d0e17edd..a81e8936e46a 100644 --- a/lib/libc/string/memccpy.c +++ b/lib/libc/string/memccpy.c @@ -33,8 +33,6 @@ static char sccsid[] = "@(#)memccpy.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> void * diff --git a/lib/libc/string/memchr.c b/lib/libc/string/memchr.c index 4b5d6f6a4c8a..10df015c5b64 100644 --- a/lib/libc/string/memchr.c +++ b/lib/libc/string/memchr.c @@ -23,8 +23,6 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <limits.h> #include <stdint.h> #include <string.h> diff --git a/lib/libc/string/memcmp.c b/lib/libc/string/memcmp.c index c8d5d92985e2..1a72e376c37a 100644 --- a/lib/libc/string/memcmp.c +++ b/lib/libc/string/memcmp.c @@ -36,8 +36,6 @@ static char sccsid[] = "@(#)memcmp.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> /* diff --git a/lib/libc/string/memcpy.c b/lib/libc/string/memcpy.c index ed03856e54b4..886b7cb2c654 100644 --- a/lib/libc/string/memcpy.c +++ b/lib/libc/string/memcpy.c @@ -1,5 +1,3 @@ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #define MEMCOPY #include "bcopy.c" diff --git a/lib/libc/string/memmem.c b/lib/libc/string/memmem.c index be52763e2652..11e1540bf1fc 100644 --- a/lib/libc/string/memmem.c +++ b/lib/libc/string/memmem.c @@ -23,8 +23,6 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stdint.h> #include <string.h> diff --git a/lib/libc/string/memmove.c b/lib/libc/string/memmove.c index 05cf75a2ce6a..089a77a892a0 100644 --- a/lib/libc/string/memmove.c +++ b/lib/libc/string/memmove.c @@ -1,5 +1,3 @@ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #define MEMMOVE #include "bcopy.c" diff --git a/lib/libc/string/mempcpy.c b/lib/libc/string/mempcpy.c index 2838df7d2743..17697c2569aa 100644 --- a/lib/libc/string/mempcpy.c +++ b/lib/libc/string/mempcpy.c @@ -30,8 +30,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> void * diff --git a/lib/libc/string/memset.c b/lib/libc/string/memset.c index e2d4027eea0c..eed47014356f 100644 --- a/lib/libc/string/memset.c +++ b/lib/libc/string/memset.c @@ -36,8 +36,6 @@ static char sccsid[] = "@(#)memset.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <limits.h> diff --git a/lib/libc/string/memset_s.c b/lib/libc/string/memset_s.c index 7dcef678ca00..3c7f76d19d7b 100644 --- a/lib/libc/string/memset_s.c +++ b/lib/libc/string/memset_s.c @@ -24,8 +24,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <errno.h> #include <stddef.h> #include <stdint.h> diff --git a/lib/libc/string/stpcpy.c b/lib/libc/string/stpcpy.c index f31cce131777..02640a68b0ae 100644 --- a/lib/libc/string/stpcpy.c +++ b/lib/libc/string/stpcpy.c @@ -35,8 +35,6 @@ static char sccsid[] = "@(#)strcpy.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> char * diff --git a/lib/libc/string/stpncpy.c b/lib/libc/string/stpncpy.c index 3e7f1b69f08a..46e61c468d99 100644 --- a/lib/libc/string/stpncpy.c +++ b/lib/libc/string/stpncpy.c @@ -27,8 +27,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> char * diff --git a/lib/libc/string/strcasecmp.c b/lib/libc/string/strcasecmp.c index 60b5bb4f0c4c..f90943d48e50 100644 --- a/lib/libc/string/strcasecmp.c +++ b/lib/libc/string/strcasecmp.c @@ -38,8 +38,6 @@ static char sccsid[] = "@(#)strcasecmp.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <strings.h> #include <ctype.h> #include "xlocale_private.h" diff --git a/lib/libc/string/strcasestr.c b/lib/libc/string/strcasestr.c index b70c2195a94e..cac3d5385acd 100644 --- a/lib/libc/string/strcasestr.c +++ b/lib/libc/string/strcasestr.c @@ -38,8 +38,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <ctype.h> #include <string.h> #include "xlocale_private.h" diff --git a/lib/libc/string/strcat.c b/lib/libc/string/strcat.c index adaad598ec22..94f851d4a257 100644 --- a/lib/libc/string/strcat.c +++ b/lib/libc/string/strcat.c @@ -33,8 +33,6 @@ static char sccsid[] = "@(#)strcat.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> char * diff --git a/lib/libc/string/strchr.c b/lib/libc/string/strchr.c index 4a20ea658252..d4e35b07c8c1 100644 --- a/lib/libc/string/strchr.c +++ b/lib/libc/string/strchr.c @@ -23,8 +23,6 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> char *__strchrnul(const char *, int); diff --git a/lib/libc/string/strchrnul.c b/lib/libc/string/strchrnul.c index e1fb83886042..1841185dc9b6 100644 --- a/lib/libc/string/strchrnul.c +++ b/lib/libc/string/strchrnul.c @@ -23,8 +23,6 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <limits.h> #include <stdint.h> #include <string.h> diff --git a/lib/libc/string/strcmp.c b/lib/libc/string/strcmp.c index 63cb4468415b..9d590cc5a4f0 100644 --- a/lib/libc/string/strcmp.c +++ b/lib/libc/string/strcmp.c @@ -36,8 +36,6 @@ static char sccsid[] = "@(#)strcmp.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> /* diff --git a/lib/libc/string/strcoll.c b/lib/libc/string/strcoll.c index ee1c88531f20..c62c85052290 100644 --- a/lib/libc/string/strcoll.c +++ b/lib/libc/string/strcoll.c @@ -34,8 +34,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stdlib.h> #include <string.h> #include <errno.h> diff --git a/lib/libc/string/strcpy.c b/lib/libc/string/strcpy.c index f58cbd9784a2..5b0ca98fb8b5 100644 --- a/lib/libc/string/strcpy.c +++ b/lib/libc/string/strcpy.c @@ -33,8 +33,6 @@ static char sccsid[] = "@(#)strcpy.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> #ifdef WEAK_STRCPY diff --git a/lib/libc/string/strcspn.c b/lib/libc/string/strcspn.c index 33ccdfdd557f..687a309d01d9 100644 --- a/lib/libc/string/strcspn.c +++ b/lib/libc/string/strcspn.c @@ -27,8 +27,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <limits.h> #include <string.h> diff --git a/lib/libc/string/strdup.c b/lib/libc/string/strdup.c index 45ed95c2ea9d..3e6849abe12c 100644 --- a/lib/libc/string/strdup.c +++ b/lib/libc/string/strdup.c @@ -33,8 +33,6 @@ static char sccsid[] = "@(#)strdup.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stddef.h> #include <stdlib.h> #include <string.h> diff --git a/lib/libc/string/strerror.c b/lib/libc/string/strerror.c index bb685e4f7dc9..673ccbf37ef7 100644 --- a/lib/libc/string/strerror.c +++ b/lib/libc/string/strerror.c @@ -33,8 +33,6 @@ static char sccsid[] = "@(#)strerror.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #if defined(NLS) #include <nl_types.h> #endif diff --git a/lib/libc/string/strlcat.c b/lib/libc/string/strlcat.c index f5ed6c6cf70c..e5040019b29b 100644 --- a/lib/libc/string/strlcat.c +++ b/lib/libc/string/strlcat.c @@ -17,8 +17,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <string.h> diff --git a/lib/libc/string/strlcpy.c b/lib/libc/string/strlcpy.c index 019d2316a046..8c7daa858960 100644 --- a/lib/libc/string/strlcpy.c +++ b/lib/libc/string/strlcpy.c @@ -17,8 +17,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <string.h> diff --git a/lib/libc/string/strlen.c b/lib/libc/string/strlen.c index 000b5c5e5361..3ff024bd9588 100644 --- a/lib/libc/string/strlen.c +++ b/lib/libc/string/strlen.c @@ -26,8 +26,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/limits.h> #include <sys/types.h> #include <string.h> diff --git a/lib/libc/string/strmode.c b/lib/libc/string/strmode.c index 50016be21ea1..c65f13909511 100644 --- a/lib/libc/string/strmode.c +++ b/lib/libc/string/strmode.c @@ -33,8 +33,6 @@ static char sccsid[] = "@(#)strmode.c 8.3 (Berkeley) 8/15/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <sys/stat.h> #include <string.h> diff --git a/lib/libc/string/strncat.c b/lib/libc/string/strncat.c index 116fc53f92f4..3220f036c458 100644 --- a/lib/libc/string/strncat.c +++ b/lib/libc/string/strncat.c @@ -36,8 +36,6 @@ static char sccsid[] = "@(#)strncat.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> /* diff --git a/lib/libc/string/strncmp.c b/lib/libc/string/strncmp.c index c68fe005fcbc..111d77b592c2 100644 --- a/lib/libc/string/strncmp.c +++ b/lib/libc/string/strncmp.c @@ -33,8 +33,6 @@ static char sccsid[] = "@(#)strncmp.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> int diff --git a/lib/libc/string/strncpy.c b/lib/libc/string/strncpy.c index 2ffce161c5c5..6a00e1ba5135 100644 --- a/lib/libc/string/strncpy.c +++ b/lib/libc/string/strncpy.c @@ -36,8 +36,6 @@ static char sccsid[] = "@(#)strncpy.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> /* diff --git a/lib/libc/string/strndup.c b/lib/libc/string/strndup.c index bee944db167a..a2351bf40722 100644 --- a/lib/libc/string/strndup.c +++ b/lib/libc/string/strndup.c @@ -17,8 +17,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stddef.h> #include <stdlib.h> #include <string.h> diff --git a/lib/libc/string/strnlen.c b/lib/libc/string/strnlen.c index ef0cd86e5278..8fa984551b8e 100644 --- a/lib/libc/string/strnlen.c +++ b/lib/libc/string/strnlen.c @@ -27,8 +27,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> size_t diff --git a/lib/libc/string/strnstr.c b/lib/libc/string/strnstr.c index 756399fea902..023b167e9c36 100644 --- a/lib/libc/string/strnstr.c +++ b/lib/libc/string/strnstr.c @@ -37,8 +37,6 @@ static char sccsid[] = "@(#)strstr.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> /* diff --git a/lib/libc/string/strpbrk.c b/lib/libc/string/strpbrk.c index 964379e19074..80ac5ebc4bde 100644 --- a/lib/libc/string/strpbrk.c +++ b/lib/libc/string/strpbrk.c @@ -33,8 +33,6 @@ static char sccsid[] = "@(#)strpbrk.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> /* diff --git a/lib/libc/string/strrchr.c b/lib/libc/string/strrchr.c index 6afb8c1a497f..cfe6f9270bce 100644 --- a/lib/libc/string/strrchr.c +++ b/lib/libc/string/strrchr.c @@ -33,8 +33,6 @@ static char sccsid[] = "@(#)rindex.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stddef.h> #include <string.h> diff --git a/lib/libc/string/strsep.c b/lib/libc/string/strsep.c index 5de452109df7..a3d64c92ff53 100644 --- a/lib/libc/string/strsep.c +++ b/lib/libc/string/strsep.c @@ -33,8 +33,6 @@ static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> #include <stdio.h> diff --git a/lib/libc/string/strsignal.c b/lib/libc/string/strsignal.c index 5f3292d10255..5abe7b37ed99 100644 --- a/lib/libc/string/strsignal.c +++ b/lib/libc/string/strsignal.c @@ -33,8 +33,6 @@ static char sccsid[] = "@(#)strerror.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include "namespace.h" #if defined(NLS) #include <nl_types.h> diff --git a/lib/libc/string/strspn.c b/lib/libc/string/strspn.c index 93ddbcf0ca75..a9df4da92cbe 100644 --- a/lib/libc/string/strspn.c +++ b/lib/libc/string/strspn.c @@ -27,8 +27,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <limits.h> #include <string.h> diff --git a/lib/libc/string/strstr.c b/lib/libc/string/strstr.c index 2ca0d4fd03c1..f3658805996b 100644 --- a/lib/libc/string/strstr.c +++ b/lib/libc/string/strstr.c @@ -23,8 +23,6 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stdint.h> #include <string.h> diff --git a/lib/libc/string/strtok.c b/lib/libc/string/strtok.c index 46e40bfa4a61..1ff7a3aa45fc 100644 --- a/lib/libc/string/strtok.c +++ b/lib/libc/string/strtok.c @@ -38,8 +38,6 @@ static char sccsid[] = "@(#)strtok.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stddef.h> #ifdef DEBUG_STRTOK #include <stdio.h> diff --git a/lib/libc/string/strxfrm.c b/lib/libc/string/strxfrm.c index a5b25273fa31..22a0bc187577 100644 --- a/lib/libc/string/strxfrm.c +++ b/lib/libc/string/strxfrm.c @@ -34,8 +34,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stdlib.h> #include <string.h> #include <errno.h> diff --git a/lib/libc/string/swab.c b/lib/libc/string/swab.c index 1a30ce813784..d73c555c5c99 100644 --- a/lib/libc/string/swab.c +++ b/lib/libc/string/swab.c @@ -36,8 +36,6 @@ static char sccsid[] = "@(#)swab.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <unistd.h> void diff --git a/lib/libc/string/timingsafe_bcmp.c b/lib/libc/string/timingsafe_bcmp.c index d098158059f3..145b02b74b09 100644 --- a/lib/libc/string/timingsafe_bcmp.c +++ b/lib/libc/string/timingsafe_bcmp.c @@ -16,8 +16,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> int __timingsafe_bcmp(const void *, const void *, size_t); diff --git a/lib/libc/string/timingsafe_memcmp.c b/lib/libc/string/timingsafe_memcmp.c index 7abfb48045f8..446a8a6cb2c3 100644 --- a/lib/libc/string/timingsafe_memcmp.c +++ b/lib/libc/string/timingsafe_memcmp.c @@ -16,8 +16,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <limits.h> #include <string.h> diff --git a/lib/libc/string/wcpcpy.c b/lib/libc/string/wcpcpy.c index 41b7c5178269..22c623bef320 100644 --- a/lib/libc/string/wcpcpy.c +++ b/lib/libc/string/wcpcpy.c @@ -35,8 +35,6 @@ static char sccsid[] = "@(#)strcpy.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <wchar.h> wchar_t * diff --git a/lib/libc/string/wcpncpy.c b/lib/libc/string/wcpncpy.c index ccc64cd49d61..4249f8bd24aa 100644 --- a/lib/libc/string/wcpncpy.c +++ b/lib/libc/string/wcpncpy.c @@ -27,8 +27,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <wchar.h> wchar_t * diff --git a/lib/libc/string/wcscasecmp.c b/lib/libc/string/wcscasecmp.c index 03a61f8656b6..50949ff38744 100644 --- a/lib/libc/string/wcscasecmp.c +++ b/lib/libc/string/wcscasecmp.c @@ -27,8 +27,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <wchar.h> #include <wctype.h> diff --git a/lib/libc/string/wcscat.c b/lib/libc/string/wcscat.c index 777a576bb557..3599e562e9b4 100644 --- a/lib/libc/string/wcscat.c +++ b/lib/libc/string/wcscat.c @@ -34,8 +34,6 @@ __RCSID("$NetBSD: wcscat.c,v 1.1 2000/12/23 23:14:36 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <wchar.h> wchar_t * diff --git a/lib/libc/string/wcschr.c b/lib/libc/string/wcschr.c index a7f1de04fe28..24c150ad17b4 100644 --- a/lib/libc/string/wcschr.c +++ b/lib/libc/string/wcschr.c @@ -27,8 +27,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <wchar.h> wchar_t * diff --git a/lib/libc/string/wcscmp.c b/lib/libc/string/wcscmp.c index 7205238d5637..ed02db771704 100644 --- a/lib/libc/string/wcscmp.c +++ b/lib/libc/string/wcscmp.c @@ -39,8 +39,6 @@ static char sccsid[] = "@(#)strcmp.c 8.1 (Berkeley) 6/4/93"; __RCSID("$NetBSD: wcscmp.c,v 1.3 2001/01/05 12:13:12 itojun Exp $"); #endif #endif /* LIBC_SCCS and not lint */ -__FBSDID("$FreeBSD$"); - #include <wchar.h> /* diff --git a/lib/libc/string/wcscoll.c b/lib/libc/string/wcscoll.c index 974166b8967a..24d8df1faaed 100644 --- a/lib/libc/string/wcscoll.c +++ b/lib/libc/string/wcscoll.c @@ -33,8 +33,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <errno.h> #include <stdlib.h> #include <string.h> diff --git a/lib/libc/string/wcscpy.c b/lib/libc/string/wcscpy.c index b400fae1cb5c..622e4201f84b 100644 --- a/lib/libc/string/wcscpy.c +++ b/lib/libc/string/wcscpy.c @@ -34,8 +34,6 @@ __RCSID("$NetBSD: wcscpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <wchar.h> wchar_t * diff --git a/lib/libc/string/wcscspn.c b/lib/libc/string/wcscspn.c index a0db7157e9e0..2bfd5e9f8604 100644 --- a/lib/libc/string/wcscspn.c +++ b/lib/libc/string/wcscspn.c @@ -34,8 +34,6 @@ __RCSID("$NetBSD: wcscspn.c,v 1.1 2000/12/23 23:14:36 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <wchar.h> size_t diff --git a/lib/libc/string/wcsdup.c b/lib/libc/string/wcsdup.c index 327574bad763..9aa088d3315f 100644 --- a/lib/libc/string/wcsdup.c +++ b/lib/libc/string/wcsdup.c @@ -27,8 +27,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stdlib.h> #include <wchar.h> diff --git a/lib/libc/string/wcslcat.c b/lib/libc/string/wcslcat.c index f954b7351fe5..336947e3cd23 100644 --- a/lib/libc/string/wcslcat.c +++ b/lib/libc/string/wcslcat.c @@ -35,8 +35,6 @@ __RCSID("$NetBSD: wcslcat.c,v 1.1 2000/12/23 23:14:36 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <wchar.h> diff --git a/lib/libc/string/wcslcpy.c b/lib/libc/string/wcslcpy.c index ca60d587004f..920425bb5efc 100644 --- a/lib/libc/string/wcslcpy.c +++ b/lib/libc/string/wcslcpy.c @@ -35,8 +35,6 @@ __RCSID("$NetBSD: wcslcpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <wchar.h> diff --git a/lib/libc/string/wcslen.c b/lib/libc/string/wcslen.c index cfd3aa23cc99..e81d981c799b 100644 --- a/lib/libc/string/wcslen.c +++ b/lib/libc/string/wcslen.c @@ -34,8 +34,6 @@ __RCSID("$NetBSD: wcslen.c,v 1.1 2000/12/23 23:14:36 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <wchar.h> size_t diff --git a/lib/libc/string/wcsncasecmp.c b/lib/libc/string/wcsncasecmp.c index 39f58be0bff8..1b6772152f4a 100644 --- a/lib/libc/string/wcsncasecmp.c +++ b/lib/libc/string/wcsncasecmp.c @@ -27,8 +27,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <wchar.h> #include <wctype.h> diff --git a/lib/libc/string/wcsncat.c b/lib/libc/string/wcsncat.c index eb13fab8de34..004391423f53 100644 --- a/lib/libc/string/wcsncat.c +++ b/lib/libc/string/wcsncat.c @@ -34,8 +34,6 @@ __RCSID("$NetBSD: wcsncat.c,v 1.1 2000/12/23 23:14:36 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <wchar.h> wchar_t * diff --git a/lib/libc/string/wcsncmp.c b/lib/libc/string/wcsncmp.c index 55c88f60e6fa..a7b2189d5fb9 100644 --- a/lib/libc/string/wcsncmp.c +++ b/lib/libc/string/wcsncmp.c @@ -36,8 +36,6 @@ static char sccsid[] = "@(#)strncmp.c 8.1 (Berkeley) 6/4/93"; __RCSID("$NetBSD: wcsncmp.c,v 1.3 2001/01/05 12:13:13 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <wchar.h> int diff --git a/lib/libc/string/wcsncpy.c b/lib/libc/string/wcsncpy.c index f86e40fe9536..16e3eb899b84 100644 --- a/lib/libc/string/wcsncpy.c +++ b/lib/libc/string/wcsncpy.c @@ -38,8 +38,6 @@ static char sccsid[] = "@(#)strncpy.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #endif #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <wchar.h> /* diff --git a/lib/libc/string/wcsnlen.c b/lib/libc/string/wcsnlen.c index 15fd520101a1..3c500855eb1f 100644 --- a/lib/libc/string/wcsnlen.c +++ b/lib/libc/string/wcsnlen.c @@ -27,8 +27,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <wchar.h> size_t diff --git a/lib/libc/string/wcspbrk.c b/lib/libc/string/wcspbrk.c index 0e9ccf66e312..62ad9a8130a2 100644 --- a/lib/libc/string/wcspbrk.c +++ b/lib/libc/string/wcspbrk.c @@ -34,8 +34,6 @@ __RCSID("$NetBSD: wcspbrk.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <wchar.h> wchar_t * diff --git a/lib/libc/string/wcsrchr.c b/lib/libc/string/wcsrchr.c index cc5e7f2ff6e1..60f56551aaac 100644 --- a/lib/libc/string/wcsrchr.c +++ b/lib/libc/string/wcsrchr.c @@ -27,8 +27,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <wchar.h> wchar_t * diff --git a/lib/libc/string/wcsspn.c b/lib/libc/string/wcsspn.c index 2b08acbd94f6..487ef6bdf3b4 100644 --- a/lib/libc/string/wcsspn.c +++ b/lib/libc/string/wcsspn.c @@ -34,8 +34,6 @@ __RCSID("$NetBSD: wcsspn.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <wchar.h> size_t diff --git a/lib/libc/string/wcsstr.c b/lib/libc/string/wcsstr.c index 74921fecf047..ff8739f1c75a 100644 --- a/lib/libc/string/wcsstr.c +++ b/lib/libc/string/wcsstr.c @@ -38,8 +38,6 @@ static char sccsid[] = "@(#)strstr.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ #endif #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <wchar.h> /* diff --git a/lib/libc/string/wcstok.c b/lib/libc/string/wcstok.c index b4bdc869a2e1..65312db85b56 100644 --- a/lib/libc/string/wcstok.c +++ b/lib/libc/string/wcstok.c @@ -35,8 +35,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <wchar.h> wchar_t * diff --git a/lib/libc/string/wcswidth.c b/lib/libc/string/wcswidth.c index 3a8805f1b754..25d86ab0bbc4 100644 --- a/lib/libc/string/wcswidth.c +++ b/lib/libc/string/wcswidth.c @@ -43,8 +43,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <wchar.h> #include "xlocale_private.h" diff --git a/lib/libc/string/wcsxfrm.c b/lib/libc/string/wcsxfrm.c index ff40a8fc45f5..be64d23b79f4 100644 --- a/lib/libc/string/wcsxfrm.c +++ b/lib/libc/string/wcsxfrm.c @@ -34,8 +34,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <stdlib.h> #include <string.h> #include <wchar.h> diff --git a/lib/libc/string/wmemchr.c b/lib/libc/string/wmemchr.c index 42ae286aaec7..8724187ffd63 100644 --- a/lib/libc/string/wmemchr.c +++ b/lib/libc/string/wmemchr.c @@ -34,8 +34,6 @@ __RCSID("$NetBSD: wmemchr.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <wchar.h> wchar_t * diff --git a/lib/libc/string/wmemcmp.c b/lib/libc/string/wmemcmp.c index f1b1b00eb5da..1abebfd8da95 100644 --- a/lib/libc/string/wmemcmp.c +++ b/lib/libc/string/wmemcmp.c @@ -34,8 +34,6 @@ __RCSID("$NetBSD: wmemcmp.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <wchar.h> int diff --git a/lib/libc/string/wmemcpy.c b/lib/libc/string/wmemcpy.c index 30956eb4f483..f692a25fc95b 100644 --- a/lib/libc/string/wmemcpy.c +++ b/lib/libc/string/wmemcpy.c @@ -34,8 +34,6 @@ __RCSID("$NetBSD: wmemcpy.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <string.h> #include <wchar.h> diff --git a/lib/libc/string/wmemmove.c b/lib/libc/string/wmemmove.c index 5e8da9f4004c..cbbdb4afdd6c 100644 --- a/lib/libc/string/wmemmove.c +++ b/lib/libc/string/wmemmove.c @@ -34,8 +34,6 @@ __RCSID("$NetBSD: wmemmove.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <string.h> #include <wchar.h> diff --git a/lib/libc/string/wmempcpy.c b/lib/libc/string/wmempcpy.c index 1cf2382f1ead..451e41e97ecb 100644 --- a/lib/libc/string/wmempcpy.c +++ b/lib/libc/string/wmempcpy.c @@ -30,8 +30,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <string.h> #include <wchar.h> diff --git a/lib/libc/string/wmemset.c b/lib/libc/string/wmemset.c index fcf40efb8e32..4276373399f9 100644 --- a/lib/libc/string/wmemset.c +++ b/lib/libc/string/wmemset.c @@ -34,8 +34,6 @@ __RCSID("$NetBSD: wmemset.c,v 1.1 2000/12/23 23:14:37 itojun Exp $"); #endif /* LIBC_SCCS and not lint */ #endif -__FBSDID("$FreeBSD$"); - #include <wchar.h> wchar_t * |