summaryrefslogtreecommitdiff
path: root/src/lib/libc/string
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/string')
-rw-r--r--src/lib/libc/string/bcmp.c6
-rw-r--r--src/lib/libc/string/bcopy.c5
-rw-r--r--src/lib/libc/string/bm.c5
-rw-r--r--src/lib/libc/string/bzero.c6
-rw-r--r--src/lib/libc/string/ffs.c6
-rw-r--r--src/lib/libc/string/index.c5
-rw-r--r--src/lib/libc/string/memccpy.c10
-rw-r--r--src/lib/libc/string/memchr.c5
-rw-r--r--src/lib/libc/string/memcmp.c5
-rw-r--r--src/lib/libc/string/memset.c5
-rw-r--r--src/lib/libc/string/rindex.c5
-rw-r--r--src/lib/libc/string/strcasecmp.c10
-rw-r--r--src/lib/libc/string/strcasestr.c6
-rw-r--r--src/lib/libc/string/strcat.c6
-rw-r--r--src/lib/libc/string/strcmp.c6
-rw-r--r--src/lib/libc/string/strcoll.c5
-rw-r--r--src/lib/libc/string/strcpy.c6
-rw-r--r--src/lib/libc/string/strcspn.c5
-rw-r--r--src/lib/libc/string/strdup.c10
-rw-r--r--src/lib/libc/string/strerror.c5
-rw-r--r--src/lib/libc/string/strerror_r.c6
-rw-r--r--src/lib/libc/string/strlcat.c6
-rw-r--r--src/lib/libc/string/strlcpy.c6
-rw-r--r--src/lib/libc/string/strlen.c6
-rw-r--r--src/lib/libc/string/strmode.c5
-rw-r--r--src/lib/libc/string/strncat.c5
-rw-r--r--src/lib/libc/string/strncmp.c6
-rw-r--r--src/lib/libc/string/strncpy.c6
-rw-r--r--src/lib/libc/string/strpbrk.c5
-rw-r--r--src/lib/libc/string/strsep.c10
-rw-r--r--src/lib/libc/string/strsignal.c4
-rw-r--r--src/lib/libc/string/strspn.c5
-rw-r--r--src/lib/libc/string/strstr.c5
-rw-r--r--src/lib/libc/string/strtok.c4
-rw-r--r--src/lib/libc/string/strxfrm.c5
-rw-r--r--src/lib/libc/string/swab.c5
-rw-r--r--src/lib/libc/string/wcscat.c6
-rw-r--r--src/lib/libc/string/wcschr.c6
-rw-r--r--src/lib/libc/string/wcscmp.c6
-rw-r--r--src/lib/libc/string/wcscpy.c6
-rw-r--r--src/lib/libc/string/wcscspn.c6
-rw-r--r--src/lib/libc/string/wcslcat.c6
-rw-r--r--src/lib/libc/string/wcslcpy.c6
-rw-r--r--src/lib/libc/string/wcslen.c6
-rw-r--r--src/lib/libc/string/wcsncat.c6
-rw-r--r--src/lib/libc/string/wcsncmp.c6
-rw-r--r--src/lib/libc/string/wcsncpy.c6
-rw-r--r--src/lib/libc/string/wcspbrk.c6
-rw-r--r--src/lib/libc/string/wcsrchr.c6
-rw-r--r--src/lib/libc/string/wcsspn.c6
-rw-r--r--src/lib/libc/string/wcsstr.c6
-rw-r--r--src/lib/libc/string/wcstok.c6
-rw-r--r--src/lib/libc/string/wcswidth.c6
-rw-r--r--src/lib/libc/string/wmemchr.c6
-rw-r--r--src/lib/libc/string/wmemcmp.c6
-rw-r--r--src/lib/libc/string/wmemcpy.c6
-rw-r--r--src/lib/libc/string/wmemmove.c6
-rw-r--r--src/lib/libc/string/wmemset.c6
58 files changed, 56 insertions, 287 deletions
diff --git a/src/lib/libc/string/bcmp.c b/src/lib/libc/string/bcmp.c
index 07d32ed043..a35689a209 100644
--- a/src/lib/libc/string/bcmp.c
+++ b/src/lib/libc/string/bcmp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bcmp.c,v 1.7 2005/03/30 20:13:52 otto Exp $ */ 1/* $OpenBSD: bcmp.c,v 1.8 2005/08/08 08:05:37 espie Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1987 Regents of the University of California. 4 * Copyright (c) 1987 Regents of the University of California.
@@ -29,10 +29,6 @@
29 * SUCH DAMAGE. 29 * SUCH DAMAGE.
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: bcmp.c,v 1.7 2005/03/30 20:13:52 otto Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#if !defined(_KERNEL) && !defined(_STANDALONE) 32#if !defined(_KERNEL) && !defined(_STANDALONE)
37#include <string.h> 33#include <string.h>
38#else 34#else
diff --git a/src/lib/libc/string/bcopy.c b/src/lib/libc/string/bcopy.c
index 7b30ab4abb..4308c6484a 100644
--- a/src/lib/libc/string/bcopy.c
+++ b/src/lib/libc/string/bcopy.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: bcopy.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */
1/*- 2/*-
2 * Copyright (c) 1990 The Regents of the University of California. 3 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -30,10 +31,6 @@
30 * SUCH DAMAGE. 31 * SUCH DAMAGE.
31 */ 32 */
32 33
33#if defined(LIBC_SCCS) && !defined(lint)
34static char *rcsid = "$OpenBSD: bcopy.c,v 1.4 2005/03/30 20:13:52 otto Exp $";
35#endif /* LIBC_SCCS and not lint */
36
37#include <string.h> 34#include <string.h>
38 35
39/* 36/*
diff --git a/src/lib/libc/string/bm.c b/src/lib/libc/string/bm.c
index 6c8e4c3472..829c24082e 100644
--- a/src/lib/libc/string/bm.c
+++ b/src/lib/libc/string/bm.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: bm.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
1/*- 2/*-
2 * Copyright (c) 1994 3 * Copyright (c) 1994
3 * The Regents of the University of California. All rights reserved. 4 * The Regents of the University of California. All rights reserved.
@@ -30,10 +31,6 @@
30 * SUCH DAMAGE. 31 * SUCH DAMAGE.
31 */ 32 */
32 33
33#if defined(LIBC_SCCS) && !defined(lint)
34static char *rcsid = "$OpenBSD: bm.c,v 1.5 2005/03/30 20:13:52 otto Exp $";
35#endif /* LIBC_SCCS and not lint */
36
37#include <sys/types.h> 34#include <sys/types.h>
38 35
39#include <bm.h> 36#include <bm.h>
diff --git a/src/lib/libc/string/bzero.c b/src/lib/libc/string/bzero.c
index 9d8a2cef3a..4d267d4f40 100644
--- a/src/lib/libc/string/bzero.c
+++ b/src/lib/libc/string/bzero.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bzero.c,v 1.6 2004/11/28 07:16:54 mickey Exp $ */ 1/* $OpenBSD: bzero.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1987 Regents of the University of California. 4 * Copyright (c) 1987 Regents of the University of California.
@@ -29,10 +29,6 @@
29 * SUCH DAMAGE. 29 * SUCH DAMAGE.
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: bzero.c,v 1.6 2004/11/28 07:16:54 mickey Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#if !defined(_KERNEL) && !defined(_STANDALONE) 32#if !defined(_KERNEL) && !defined(_STANDALONE)
37#include <string.h> 33#include <string.h>
38#else 34#else
diff --git a/src/lib/libc/string/ffs.c b/src/lib/libc/string/ffs.c
index f1d14096a2..7dec1613a8 100644
--- a/src/lib/libc/string/ffs.c
+++ b/src/lib/libc/string/ffs.c
@@ -1,14 +1,10 @@
1/* $OpenBSD: ffs.c,v 1.6 2003/06/11 21:08:16 deraadt Exp $ */ 1/* $OpenBSD: ffs.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */
2 2
3/* 3/*
4 * Public domain. 4 * Public domain.
5 * Written by Dale Rahn. 5 * Written by Dale Rahn.
6 */ 6 */
7 7
8#if defined(LIBC_SCCS) && !defined(lint)
9static char *rcsid = "$OpenBSD: ffs.c,v 1.6 2003/06/11 21:08:16 deraadt Exp $";
10#endif /* LIBC_SCCS and not lint */
11
12#if !defined(_KERNEL) && !defined(_STANDALONE) 8#if !defined(_KERNEL) && !defined(_STANDALONE)
13#include <string.h> 9#include <string.h>
14#else 10#else
diff --git a/src/lib/libc/string/index.c b/src/lib/libc/string/index.c
index 52d0fd46fa..50e9ca35ab 100644
--- a/src/lib/libc/string/index.c
+++ b/src/lib/libc/string/index.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: index.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */
1/*- 2/*-
2 * Copyright (c) 1990 The Regents of the University of California. 3 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -27,10 +28,6 @@
27 * SUCH DAMAGE. 28 * SUCH DAMAGE.
28 */ 29 */
29 30
30#if defined(LIBC_SCCS) && !defined(lint)
31static char *rcsid = "$OpenBSD: index.c,v 1.4 2003/06/02 20:18:38 millert Exp $";
32#endif /* LIBC_SCCS and not lint */
33
34#include <string.h> 31#include <string.h>
35 32
36char * 33char *
diff --git a/src/lib/libc/string/memccpy.c b/src/lib/libc/string/memccpy.c
index 265570c5a4..485c55fcab 100644
--- a/src/lib/libc/string/memccpy.c
+++ b/src/lib/libc/string/memccpy.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: memccpy.c,v 1.5 2005/03/30 20:13:52 otto Exp $ */ 1/* $OpenBSD: memccpy.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 1990, 1993 4 * Copyright (c) 1990, 1993
@@ -29,14 +29,6 @@
29 * SUCH DAMAGE. 29 * SUCH DAMAGE.
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33#if 0
34static char sccsid[] = "@(#)memccpy.c 8.1 (Berkeley) 6/4/93";
35#else
36static char *rcsid = "$OpenBSD: memccpy.c,v 1.5 2005/03/30 20:13:52 otto Exp $";
37#endif
38#endif /* LIBC_SCCS and not lint */
39
40#include <string.h> 32#include <string.h>
41 33
42void * 34void *
diff --git a/src/lib/libc/string/memchr.c b/src/lib/libc/string/memchr.c
index 454abcbc17..4573e3ceb1 100644
--- a/src/lib/libc/string/memchr.c
+++ b/src/lib/libc/string/memchr.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: memchr.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */
1/*- 2/*-
2 * Copyright (c) 1990 The Regents of the University of California. 3 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -30,10 +31,6 @@
30 * SUCH DAMAGE. 31 * SUCH DAMAGE.
31 */ 32 */
32 33
33#if defined(LIBC_SCCS) && !defined(lint)
34static char *rcsid = "$OpenBSD: memchr.c,v 1.6 2003/06/11 21:08:16 deraadt Exp $";
35#endif /* LIBC_SCCS and not lint */
36
37#include <string.h> 34#include <string.h>
38 35
39void * 36void *
diff --git a/src/lib/libc/string/memcmp.c b/src/lib/libc/string/memcmp.c
index 6c83208a7b..49384a6fb9 100644
--- a/src/lib/libc/string/memcmp.c
+++ b/src/lib/libc/string/memcmp.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: memcmp.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */
1/*- 2/*-
2 * Copyright (c) 1990 The Regents of the University of California. 3 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -30,10 +31,6 @@
30 * SUCH DAMAGE. 31 * SUCH DAMAGE.
31 */ 32 */
32 33
33#if defined(LIBC_SCCS) && !defined(lint)
34static char *rcsid = "$OpenBSD: memcmp.c,v 1.4 2003/06/11 21:08:16 deraadt Exp $";
35#endif /* LIBC_SCCS and not lint */
36
37#include <string.h> 34#include <string.h>
38 35
39/* 36/*
diff --git a/src/lib/libc/string/memset.c b/src/lib/libc/string/memset.c
index 9bc0556faa..db32866a0e 100644
--- a/src/lib/libc/string/memset.c
+++ b/src/lib/libc/string/memset.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: memset.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */
1/*- 2/*-
2 * Copyright (c) 1990 The Regents of the University of California. 3 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -30,10 +31,6 @@
30 * SUCH DAMAGE. 31 * SUCH DAMAGE.
31 */ 32 */
32 33
33#if defined(LIBC_SCCS) && !defined(lint)
34static char *rcsid = "$OpenBSD: memset.c,v 1.4 2003/06/11 21:08:16 deraadt Exp $";
35#endif /* LIBC_SCCS and not lint */
36
37#include <string.h> 34#include <string.h>
38 35
39void * 36void *
diff --git a/src/lib/libc/string/rindex.c b/src/lib/libc/string/rindex.c
index b880d0eaeb..bf9d6f7cf1 100644
--- a/src/lib/libc/string/rindex.c
+++ b/src/lib/libc/string/rindex.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: rindex.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
1/* 2/*
2 * Copyright (c) 1988 Regents of the University of California. 3 * Copyright (c) 1988 Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -27,10 +28,6 @@
27 * SUCH DAMAGE. 28 * SUCH DAMAGE.
28 */ 29 */
29 30
30#if defined(LIBC_SCCS) && !defined(lint)
31static char *rcsid = "$OpenBSD: rindex.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $";
32#endif /* LIBC_SCCS and not lint */
33
34#include <string.h> 31#include <string.h>
35 32
36char * 33char *
diff --git a/src/lib/libc/string/strcasecmp.c b/src/lib/libc/string/strcasecmp.c
index 62da063444..2be09136c0 100644
--- a/src/lib/libc/string/strcasecmp.c
+++ b/src/lib/libc/string/strcasecmp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strcasecmp.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $ */ 1/* $OpenBSD: strcasecmp.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1987, 1993 4 * Copyright (c) 1987, 1993
@@ -31,14 +31,6 @@
31 31
32#include <string.h> 32#include <string.h>
33 33
34#if defined(LIBC_SCCS) && !defined(lint)
35#if 0
36static char sccsid[] = "@(#)strcasecmp.c 8.1 (Berkeley) 6/4/93";
37#else
38static char *rcsid = "$OpenBSD: strcasecmp.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $";
39#endif
40#endif /* LIBC_SCCS and not lint */
41
42typedef unsigned char u_char; 34typedef unsigned char u_char;
43 35
44/* 36/*
diff --git a/src/lib/libc/string/strcasestr.c b/src/lib/libc/string/strcasestr.c
index 075e6f1987..07c8c2e8fb 100644
--- a/src/lib/libc/string/strcasestr.c
+++ b/src/lib/libc/string/strcasestr.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strcasestr.c,v 1.1 2005/03/30 03:04:19 deraadt Exp $ */ 1/* $OpenBSD: strcasestr.c,v 1.2 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: strcasestr.c,v 1.2 2005/02/09 21:35:47 kleink Exp $ */ 2/* $NetBSD: strcasestr.c,v 1.2 2005/02/09 21:35:47 kleink Exp $ */
3 3
4/*- 4/*-
@@ -33,10 +33,6 @@
33 * SUCH DAMAGE. 33 * SUCH DAMAGE.
34 */ 34 */
35 35
36#if defined(LIBC_SCCS) && !defined(lint)
37static char *rcsid = "$OpenBSD: strcasestr.c,v 1.1 2005/03/30 03:04:19 deraadt Exp $";
38#endif /* LIBC_SCCS and not lint */
39
40#include <ctype.h> 36#include <ctype.h>
41#include <string.h> 37#include <string.h>
42 38
diff --git a/src/lib/libc/string/strcat.c b/src/lib/libc/string/strcat.c
index 4f9734ab9e..7cea5229fb 100644
--- a/src/lib/libc/string/strcat.c
+++ b/src/lib/libc/string/strcat.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strcat.c,v 1.7 2004/11/28 07:16:54 mickey Exp $ */ 1/* $OpenBSD: strcat.c,v 1.8 2005/08/08 08:05:37 espie Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1988 Regents of the University of California. 4 * Copyright (c) 1988 Regents of the University of California.
@@ -29,10 +29,6 @@
29 * SUCH DAMAGE. 29 * SUCH DAMAGE.
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: strcat.c,v 1.7 2004/11/28 07:16:54 mickey Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#if !defined(_KERNEL) && !defined(_STANDALONE) 32#if !defined(_KERNEL) && !defined(_STANDALONE)
37#include <string.h> 33#include <string.h>
38#else 34#else
diff --git a/src/lib/libc/string/strcmp.c b/src/lib/libc/string/strcmp.c
index 0fe34c2804..816fd111ac 100644
--- a/src/lib/libc/string/strcmp.c
+++ b/src/lib/libc/string/strcmp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strcmp.c,v 1.6 2004/11/28 07:16:54 mickey Exp $ */ 1/* $OpenBSD: strcmp.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 1990 The Regents of the University of California. 4 * Copyright (c) 1990 The Regents of the University of California.
@@ -32,10 +32,6 @@
32 * SUCH DAMAGE. 32 * SUCH DAMAGE.
33 */ 33 */
34 34
35#if defined(LIBC_SCCS) && !defined(lint)
36static char *rcsid = "$OpenBSD: strcmp.c,v 1.6 2004/11/28 07:16:54 mickey Exp $";
37#endif /* LIBC_SCCS and not lint */
38
39#if !defined(_KERNEL) && !defined(_STANDALONE) 35#if !defined(_KERNEL) && !defined(_STANDALONE)
40#include <string.h> 36#include <string.h>
41#else 37#else
diff --git a/src/lib/libc/string/strcoll.c b/src/lib/libc/string/strcoll.c
index 9622b67281..2df983bd65 100644
--- a/src/lib/libc/string/strcoll.c
+++ b/src/lib/libc/string/strcoll.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: strcoll.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */
1/*- 2/*-
2 * Copyright (c) 1990 The Regents of the University of California. 3 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -30,10 +31,6 @@
30 * SUCH DAMAGE. 31 * SUCH DAMAGE.
31 */ 32 */
32 33
33#if defined(LIBC_SCCS) && !defined(lint)
34static char *rcsid = "$OpenBSD: strcoll.c,v 1.4 2003/06/11 21:08:29 deraadt Exp $";
35#endif /* LIBC_SCCS and not lint */
36
37#include <string.h> 34#include <string.h>
38 35
39/* 36/*
diff --git a/src/lib/libc/string/strcpy.c b/src/lib/libc/string/strcpy.c
index 0acd1bbadf..71d90d4100 100644
--- a/src/lib/libc/string/strcpy.c
+++ b/src/lib/libc/string/strcpy.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strcpy.c,v 1.7 2004/11/28 07:16:54 mickey Exp $ */ 1/* $OpenBSD: strcpy.c,v 1.8 2005/08/08 08:05:37 espie Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1988 Regents of the University of California. 4 * Copyright (c) 1988 Regents of the University of California.
@@ -29,10 +29,6 @@
29 * SUCH DAMAGE. 29 * SUCH DAMAGE.
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: strcpy.c,v 1.7 2004/11/28 07:16:54 mickey Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#if !defined(_KERNEL) && !defined(_STANDALONE) 32#if !defined(_KERNEL) && !defined(_STANDALONE)
37#include <string.h> 33#include <string.h>
38#else 34#else
diff --git a/src/lib/libc/string/strcspn.c b/src/lib/libc/string/strcspn.c
index f96f903809..1eb233614d 100644
--- a/src/lib/libc/string/strcspn.c
+++ b/src/lib/libc/string/strcspn.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: strcspn.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */
1/*- 2/*-
2 * Copyright (c) 1990 The Regents of the University of California. 3 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -30,10 +31,6 @@
30 * SUCH DAMAGE. 31 * SUCH DAMAGE.
31 */ 32 */
32 33
33#if defined(LIBC_SCCS) && !defined(lint)
34static char *rcsid = "$OpenBSD: strcspn.c,v 1.4 2003/06/11 21:08:16 deraadt Exp $";
35#endif /* LIBC_SCCS and not lint */
36
37#include <string.h> 34#include <string.h>
38 35
39/* 36/*
diff --git a/src/lib/libc/string/strdup.c b/src/lib/libc/string/strdup.c
index bbea59888c..a6aa1e03b0 100644
--- a/src/lib/libc/string/strdup.c
+++ b/src/lib/libc/string/strdup.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strdup.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $ */ 1/* $OpenBSD: strdup.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1988, 1993 4 * Copyright (c) 1988, 1993
@@ -29,14 +29,6 @@
29 * SUCH DAMAGE. 29 * SUCH DAMAGE.
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33#if 0
34static char sccsid[] = "@(#)strdup.c 8.1 (Berkeley) 6/4/93";
35#else
36static char *rcsid = "$OpenBSD: strdup.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $";
37#endif
38#endif /* LIBC_SCCS and not lint */
39
40#include <sys/types.h> 32#include <sys/types.h>
41 33
42#include <stddef.h> 34#include <stddef.h>
diff --git a/src/lib/libc/string/strerror.c b/src/lib/libc/string/strerror.c
index edb6af7386..13996f08e9 100644
--- a/src/lib/libc/string/strerror.c
+++ b/src/lib/libc/string/strerror.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: strerror.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */
1/* 2/*
2 * Copyright (c) 1988 Regents of the University of California. 3 * Copyright (c) 1988 Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -27,10 +28,6 @@
27 * SUCH DAMAGE. 28 * SUCH DAMAGE.
28 */ 29 */
29 30
30#if defined(LIBC_SCCS) && !defined(lint)
31static char *rcsid = "$OpenBSD: strerror.c,v 1.6 2004/05/03 05:07:34 espie Exp $";
32#endif /* LIBC_SCCS and not lint */
33
34#include <string.h> 31#include <string.h>
35#include <limits.h> 32#include <limits.h>
36 33
diff --git a/src/lib/libc/string/strerror_r.c b/src/lib/libc/string/strerror_r.c
index 958a88df3e..85988a2561 100644
--- a/src/lib/libc/string/strerror_r.c
+++ b/src/lib/libc/string/strerror_r.c
@@ -1,10 +1,6 @@
1/* $OpenBSD: strerror_r.c,v 1.5 2005/05/26 12:56:01 otto Exp $ */ 1/* $OpenBSD: strerror_r.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
2/* Public Domain <marc@snafu.org> */ 2/* Public Domain <marc@snafu.org> */
3 3
4#if defined(LIBC_SCCS) && !defined(lint)
5static char *rcsid = "$OpenBSD: strerror_r.c,v 1.5 2005/05/26 12:56:01 otto Exp $";
6#endif /* LIBC_SCCS and not lint */
7
8#ifdef NLS 4#ifdef NLS
9#define catclose _catclose 5#define catclose _catclose
10#define catgets _catgets 6#define catgets _catgets
diff --git a/src/lib/libc/string/strlcat.c b/src/lib/libc/string/strlcat.c
index 952eed1a79..ceab094411 100644
--- a/src/lib/libc/string/strlcat.c
+++ b/src/lib/libc/string/strlcat.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strlcat.c,v 1.12 2005/03/30 20:13:52 otto Exp $ */ 1/* $OpenBSD: strlcat.c,v 1.13 2005/08/08 08:05:37 espie Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> 4 * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -16,10 +16,6 @@
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */ 17 */
18 18
19#if defined(LIBC_SCCS) && !defined(lint)
20static char *rcsid = "$OpenBSD: strlcat.c,v 1.12 2005/03/30 20:13:52 otto Exp $";
21#endif /* LIBC_SCCS and not lint */
22
23#include <sys/types.h> 19#include <sys/types.h>
24#include <string.h> 20#include <string.h>
25 21
diff --git a/src/lib/libc/string/strlcpy.c b/src/lib/libc/string/strlcpy.c
index 09a9c2b360..110155f76f 100644
--- a/src/lib/libc/string/strlcpy.c
+++ b/src/lib/libc/string/strlcpy.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strlcpy.c,v 1.9 2005/03/30 20:13:52 otto Exp $ */ 1/* $OpenBSD: strlcpy.c,v 1.10 2005/08/08 08:05:37 espie Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> 4 * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -16,10 +16,6 @@
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */ 17 */
18 18
19#if defined(LIBC_SCCS) && !defined(lint)
20static char *rcsid = "$OpenBSD: strlcpy.c,v 1.9 2005/03/30 20:13:52 otto Exp $";
21#endif /* LIBC_SCCS and not lint */
22
23#include <sys/types.h> 19#include <sys/types.h>
24#include <string.h> 20#include <string.h>
25 21
diff --git a/src/lib/libc/string/strlen.c b/src/lib/libc/string/strlen.c
index 298a9966a3..12d9ec4dad 100644
--- a/src/lib/libc/string/strlen.c
+++ b/src/lib/libc/string/strlen.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strlen.c,v 1.6 2003/06/11 21:08:16 deraadt Exp $ */ 1/* $OpenBSD: strlen.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 1990, 1993 4 * Copyright (c) 1990, 1993
@@ -29,10 +29,6 @@
29 * SUCH DAMAGE. 29 * SUCH DAMAGE.
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: strlen.c,v 1.6 2003/06/11 21:08:16 deraadt Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#if !defined(_KERNEL) && !defined(_STANDALONE) 32#if !defined(_KERNEL) && !defined(_STANDALONE)
37#include <string.h> 33#include <string.h>
38#else 34#else
diff --git a/src/lib/libc/string/strmode.c b/src/lib/libc/string/strmode.c
index eedd65aaf3..6f0fa34ed8 100644
--- a/src/lib/libc/string/strmode.c
+++ b/src/lib/libc/string/strmode.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: strmode.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */
1/*- 2/*-
2 * Copyright (c) 1990 The Regents of the University of California. 3 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -27,10 +28,6 @@
27 * SUCH DAMAGE. 28 * SUCH DAMAGE.
28 */ 29 */
29 30
30#if defined(LIBC_SCCS) && !defined(lint)
31static char *rcsid = "$OpenBSD: strmode.c,v 1.6 2005/06/15 17:48:52 millert Exp $";
32#endif /* LIBC_SCCS and not lint */
33
34#include <sys/types.h> 31#include <sys/types.h>
35#include <sys/stat.h> 32#include <sys/stat.h>
36#include <string.h> 33#include <string.h>
diff --git a/src/lib/libc/string/strncat.c b/src/lib/libc/string/strncat.c
index 05d35e0900..c4df4f2fad 100644
--- a/src/lib/libc/string/strncat.c
+++ b/src/lib/libc/string/strncat.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: strncat.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */
1/*- 2/*-
2 * Copyright (c) 1990 The Regents of the University of California. 3 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -30,10 +31,6 @@
30 * SUCH DAMAGE. 31 * SUCH DAMAGE.
31 */ 32 */
32 33
33#if defined(LIBC_SCCS) && !defined(lint)
34static char *rcsid = "$OpenBSD: strncat.c,v 1.4 2003/06/11 21:08:16 deraadt Exp $";
35#endif /* LIBC_SCCS and not lint */
36
37#include <string.h> 34#include <string.h>
38 35
39/* 36/*
diff --git a/src/lib/libc/string/strncmp.c b/src/lib/libc/string/strncmp.c
index ddab42dc75..0aea80d7d9 100644
--- a/src/lib/libc/string/strncmp.c
+++ b/src/lib/libc/string/strncmp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strncmp.c,v 1.6 2004/11/28 07:16:54 mickey Exp $ */ 1/* $OpenBSD: strncmp.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1989 The Regents of the University of California. 4 * Copyright (c) 1989 The Regents of the University of California.
@@ -29,10 +29,6 @@
29 * SUCH DAMAGE. 29 * SUCH DAMAGE.
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: strncmp.c,v 1.6 2004/11/28 07:16:54 mickey Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#if !defined(_KERNEL) && !defined(_STANDALONE) 32#if !defined(_KERNEL) && !defined(_STANDALONE)
37#include <string.h> 33#include <string.h>
38#else 34#else
diff --git a/src/lib/libc/string/strncpy.c b/src/lib/libc/string/strncpy.c
index d73008c6db..4426cbe2e3 100644
--- a/src/lib/libc/string/strncpy.c
+++ b/src/lib/libc/string/strncpy.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strncpy.c,v 1.5 2004/11/28 07:16:54 mickey Exp $ */ 1/* $OpenBSD: strncpy.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 1990 The Regents of the University of California. 4 * Copyright (c) 1990 The Regents of the University of California.
@@ -32,10 +32,6 @@
32 * SUCH DAMAGE. 32 * SUCH DAMAGE.
33 */ 33 */
34 34
35#if defined(LIBC_SCCS) && !defined(lint)
36static char *rcsid = "$OpenBSD: strncpy.c,v 1.5 2004/11/28 07:16:54 mickey Exp $";
37#endif /* LIBC_SCCS and not lint */
38
39#if !defined(_KERNEL) && !defined(_STANDALONE) 35#if !defined(_KERNEL) && !defined(_STANDALONE)
40#include <string.h> 36#include <string.h>
41#else 37#else
diff --git a/src/lib/libc/string/strpbrk.c b/src/lib/libc/string/strpbrk.c
index 024c42bdc3..cd3b71c0d3 100644
--- a/src/lib/libc/string/strpbrk.c
+++ b/src/lib/libc/string/strpbrk.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: strpbrk.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */
1/* 2/*
2 * Copyright (c) 1985 Regents of the University of California. 3 * Copyright (c) 1985 Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -27,10 +28,6 @@
27 * SUCH DAMAGE. 28 * SUCH DAMAGE.
28 */ 29 */
29 30
30#if defined(LIBC_SCCS) && !defined(lint)
31static char *rcsid = "$OpenBSD: strpbrk.c,v 1.4 2003/06/11 21:08:16 deraadt Exp $";
32#endif /* LIBC_SCCS and not lint */
33
34#include <string.h> 31#include <string.h>
35 32
36/* 33/*
diff --git a/src/lib/libc/string/strsep.c b/src/lib/libc/string/strsep.c
index 337d78e466..bcca681e03 100644
--- a/src/lib/libc/string/strsep.c
+++ b/src/lib/libc/string/strsep.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strsep.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $ */ 1/* $OpenBSD: strsep.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 1990, 1993 4 * Copyright (c) 1990, 1993
@@ -32,14 +32,6 @@
32#include <string.h> 32#include <string.h>
33#include <stdio.h> 33#include <stdio.h>
34 34
35#if defined(LIBC_SCCS) && !defined(lint)
36#if 0
37static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93";
38#else
39static char *rcsid = "$OpenBSD: strsep.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $";
40#endif
41#endif /* LIBC_SCCS and not lint */
42
43/* 35/*
44 * Get next token from string *stringp, where tokens are possibly-empty 36 * Get next token from string *stringp, where tokens are possibly-empty
45 * strings separated by characters from delim. 37 * strings separated by characters from delim.
diff --git a/src/lib/libc/string/strsignal.c b/src/lib/libc/string/strsignal.c
index afe0deb272..aa541cefed 100644
--- a/src/lib/libc/string/strsignal.c
+++ b/src/lib/libc/string/strsignal.c
@@ -27,10 +27,6 @@
27 * SUCH DAMAGE. 27 * SUCH DAMAGE.
28 */ 28 */
29 29
30#if defined(LIBC_SCCS) && !defined(lint)
31static char *rcsid = "$OpenBSD: strsignal.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $";
32#endif /* LIBC_SCCS and not lint */
33
34#include <string.h> 30#include <string.h>
35#include <limits.h> 31#include <limits.h>
36 32
diff --git a/src/lib/libc/string/strspn.c b/src/lib/libc/string/strspn.c
index d51a8cd3e6..385649c041 100644
--- a/src/lib/libc/string/strspn.c
+++ b/src/lib/libc/string/strspn.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: strspn.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */
1/* 2/*
2 * Copyright (c) 1989 The Regents of the University of California. 3 * Copyright (c) 1989 The Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -27,10 +28,6 @@
27 * SUCH DAMAGE. 28 * SUCH DAMAGE.
28 */ 29 */
29 30
30#if defined(LIBC_SCCS) && !defined(lint)
31static char *rcsid = "$OpenBSD: strspn.c,v 1.4 2003/06/11 21:08:29 deraadt Exp $";
32#endif /* LIBC_SCCS and not lint */
33
34#include <string.h> 31#include <string.h>
35 32
36/* 33/*
diff --git a/src/lib/libc/string/strstr.c b/src/lib/libc/string/strstr.c
index e6a94c5ce6..95a865bf79 100644
--- a/src/lib/libc/string/strstr.c
+++ b/src/lib/libc/string/strstr.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: strstr.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */
1/*- 2/*-
2 * Copyright (c) 1990 The Regents of the University of California. 3 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -30,10 +31,6 @@
30 * SUCH DAMAGE. 31 * SUCH DAMAGE.
31 */ 32 */
32 33
33#if defined(LIBC_SCCS) && !defined(lint)
34static char *rcsid = "$OpenBSD: strstr.c,v 1.4 2003/06/11 21:08:16 deraadt Exp $";
35#endif /* LIBC_SCCS and not lint */
36
37#include <string.h> 34#include <string.h>
38 35
39/* 36/*
diff --git a/src/lib/libc/string/strtok.c b/src/lib/libc/string/strtok.c
index 6498eac8cc..4e963a019e 100644
--- a/src/lib/libc/string/strtok.c
+++ b/src/lib/libc/string/strtok.c
@@ -27,10 +27,6 @@
27 * SUCH DAMAGE. 27 * SUCH DAMAGE.
28 */ 28 */
29 29
30#if defined(LIBC_SCCS) && !defined(lint)
31static char *rcsid = "$OpenBSD: strtok.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $";
32#endif /* LIBC_SCCS and not lint */
33
34#include <string.h> 30#include <string.h>
35 31
36char * 32char *
diff --git a/src/lib/libc/string/strxfrm.c b/src/lib/libc/string/strxfrm.c
index a2e2dbc440..6f289c901e 100644
--- a/src/lib/libc/string/strxfrm.c
+++ b/src/lib/libc/string/strxfrm.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: strxfrm.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
1/*- 2/*-
2 * Copyright (c) 1990 The Regents of the University of California. 3 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -30,10 +31,6 @@
30 * SUCH DAMAGE. 31 * SUCH DAMAGE.
31 */ 32 */
32 33
33#if defined(LIBC_SCCS) && !defined(lint)
34static char *rcsid = "$OpenBSD: strxfrm.c,v 1.5 2003/09/06 22:43:12 tedu Exp $";
35#endif /* LIBC_SCCS and not lint */
36
37#include <string.h> 34#include <string.h>
38 35
39/* 36/*
diff --git a/src/lib/libc/string/swab.c b/src/lib/libc/string/swab.c
index 0129561aa3..b53717dcde 100644
--- a/src/lib/libc/string/swab.c
+++ b/src/lib/libc/string/swab.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: swab.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */
1/* 2/*
2 * Copyright (c) 1988 Regents of the University of California. 3 * Copyright (c) 1988 Regents of the University of California.
3 * All rights reserved. 4 * All rights reserved.
@@ -30,10 +31,6 @@
30 * SUCH DAMAGE. 31 * SUCH DAMAGE.
31 */ 32 */
32 33
33#if defined(LIBC_SCCS) && !defined(lint)
34static char *rcsid = "$OpenBSD: swab.c,v 1.6 2005/03/30 20:13:52 otto Exp $";
35#endif /* LIBC_SCCS and not lint */
36
37#include <unistd.h> 34#include <unistd.h>
38 35
39void 36void
diff --git a/src/lib/libc/string/wcscat.c b/src/lib/libc/string/wcscat.c
index 80de3f0d5e..a4841a975a 100644
--- a/src/lib/libc/string/wcscat.c
+++ b/src/lib/libc/string/wcscat.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcscat.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcscat.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcscat.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */ 2/* $NetBSD: wcscat.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wcscat.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp 29 * citrus Id: wcscat.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wcscat.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37 33
38#if defined(APIWARN) 34#if defined(APIWARN)
diff --git a/src/lib/libc/string/wcschr.c b/src/lib/libc/string/wcschr.c
index 8086122517..c06127e087 100644
--- a/src/lib/libc/string/wcschr.c
+++ b/src/lib/libc/string/wcschr.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcschr.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcschr.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcschr.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */ 2/* $NetBSD: wcschr.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wcschr.c,v 1.2 2000/12/21 05:07:25 itojun Exp 29 * citrus Id: wcschr.c,v 1.2 2000/12/21 05:07:25 itojun Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wcschr.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37 33
38wchar_t * 34wchar_t *
diff --git a/src/lib/libc/string/wcscmp.c b/src/lib/libc/string/wcscmp.c
index ebbb87ca4d..4a8f6ba3fb 100644
--- a/src/lib/libc/string/wcscmp.c
+++ b/src/lib/libc/string/wcscmp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcscmp.c,v 1.3 2005/08/08 05:53:01 espie Exp $ */ 1/* $OpenBSD: wcscmp.c,v 1.4 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcscmp.c,v 1.5 2003/08/07 16:43:54 agc Exp $ */ 2/* $NetBSD: wcscmp.c,v 1.5 2003/08/07 16:43:54 agc Exp $ */
3 3
4/*- 4/*-
@@ -33,10 +33,6 @@
33 * SUCH DAMAGE. 33 * SUCH DAMAGE.
34 */ 34 */
35 35
36#if defined(LIBC_SCCS) && !defined(lint)
37static char *rcsid = "$OpenBSD: wcscmp.c,v 1.3 2005/08/08 05:53:01 espie Exp $";
38#endif /* LIBC_SCCS and not lint */
39
40#include <wchar.h> 36#include <wchar.h>
41#include "locale/runetype.h" 37#include "locale/runetype.h"
42 38
diff --git a/src/lib/libc/string/wcscpy.c b/src/lib/libc/string/wcscpy.c
index e5bf8b0dbf..75fdb75fe4 100644
--- a/src/lib/libc/string/wcscpy.c
+++ b/src/lib/libc/string/wcscpy.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcscpy.c,v 1.3 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcscpy.c,v 1.4 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcscpy.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */ 2/* $NetBSD: wcscpy.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wcscpy.c,v 1.2 2000/12/21 04:51:09 itojun Exp 29 * citrus Id: wcscpy.c,v 1.2 2000/12/21 04:51:09 itojun Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wcscpy.c,v 1.3 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37 33
38#if defined(APIWARN) 34#if defined(APIWARN)
diff --git a/src/lib/libc/string/wcscspn.c b/src/lib/libc/string/wcscspn.c
index 59a9510156..cf40092465 100644
--- a/src/lib/libc/string/wcscspn.c
+++ b/src/lib/libc/string/wcscspn.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcscspn.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcscspn.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcscspn.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */ 2/* $NetBSD: wcscspn.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wcscspn.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp 29 * citrus Id: wcscspn.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wcscspn.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37 33
38size_t 34size_t
diff --git a/src/lib/libc/string/wcslcat.c b/src/lib/libc/string/wcslcat.c
index e74d52f4eb..bcd52d1f3c 100644
--- a/src/lib/libc/string/wcslcat.c
+++ b/src/lib/libc/string/wcslcat.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcslcat.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcslcat.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcslcat.c,v 1.2 2001/01/03 14:33:02 lukem Exp $ */ 2/* $NetBSD: wcslcat.c,v 1.2 2001/01/03 14:33:02 lukem Exp $ */
3/* from OpenBSD: strlcat.c,v 1.3 2000/11/24 11:10:02 itojun Exp */ 3/* from OpenBSD: strlcat.c,v 1.3 2000/11/24 11:10:02 itojun Exp */
4 4
@@ -29,10 +29,6 @@
29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wcslcat.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <sys/types.h> 32#include <sys/types.h>
37#include <wchar.h> 33#include <wchar.h>
38 34
diff --git a/src/lib/libc/string/wcslcpy.c b/src/lib/libc/string/wcslcpy.c
index a6acb80d58..4a9afffd98 100644
--- a/src/lib/libc/string/wcslcpy.c
+++ b/src/lib/libc/string/wcslcpy.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcslcpy.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcslcpy.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcslcpy.c,v 1.2 2001/01/03 14:33:02 lukem Exp $ */ 2/* $NetBSD: wcslcpy.c,v 1.2 2001/01/03 14:33:02 lukem Exp $ */
3/* from OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp */ 3/* from OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp */
4 4
@@ -29,10 +29,6 @@
29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wcslcpy.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <sys/types.h> 32#include <sys/types.h>
37#include <wchar.h> 33#include <wchar.h>
38 34
diff --git a/src/lib/libc/string/wcslen.c b/src/lib/libc/string/wcslen.c
index 8bd5b5d07f..c1de4a271e 100644
--- a/src/lib/libc/string/wcslen.c
+++ b/src/lib/libc/string/wcslen.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcslen.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcslen.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcslen.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */ 2/* $NetBSD: wcslen.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wcslen.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp 29 * citrus Id: wcslen.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wcslen.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37 33
38size_t 34size_t
diff --git a/src/lib/libc/string/wcsncat.c b/src/lib/libc/string/wcsncat.c
index b8e000c864..eb9a701514 100644
--- a/src/lib/libc/string/wcsncat.c
+++ b/src/lib/libc/string/wcsncat.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcsncat.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcsncat.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcsncat.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */ 2/* $NetBSD: wcsncat.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wcsncat.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp 29 * citrus Id: wcsncat.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wcsncat.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37 33
38wchar_t * 34wchar_t *
diff --git a/src/lib/libc/string/wcsncmp.c b/src/lib/libc/string/wcsncmp.c
index 30d37f6657..fb3c7057cf 100644
--- a/src/lib/libc/string/wcsncmp.c
+++ b/src/lib/libc/string/wcsncmp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcsncmp.c,v 1.3 2005/08/08 05:53:01 espie Exp $ */ 1/* $OpenBSD: wcsncmp.c,v 1.4 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcsncmp.c,v 1.5 2003/08/07 16:43:54 agc Exp $ */ 2/* $NetBSD: wcsncmp.c,v 1.5 2003/08/07 16:43:54 agc Exp $ */
3 3
4/* 4/*
@@ -30,10 +30,6 @@
30 * SUCH DAMAGE. 30 * SUCH DAMAGE.
31 */ 31 */
32 32
33#if defined(LIBC_SCCS) && !defined(lint)
34static char *rcsid = "$OpenBSD: wcsncmp.c,v 1.3 2005/08/08 05:53:01 espie Exp $";
35#endif /* LIBC_SCCS and not lint */
36
37#include <wchar.h> 33#include <wchar.h>
38#include "locale/runetype.h" 34#include "locale/runetype.h"
39 35
diff --git a/src/lib/libc/string/wcsncpy.c b/src/lib/libc/string/wcsncpy.c
index 2bf020e268..5da7edb06e 100644
--- a/src/lib/libc/string/wcsncpy.c
+++ b/src/lib/libc/string/wcsncpy.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcsncpy.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcsncpy.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcsncpy.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ 2/* $NetBSD: wcsncpy.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wcsncpy.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp 29 * citrus Id: wcsncpy.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wcsncpy.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37 33
38wchar_t * 34wchar_t *
diff --git a/src/lib/libc/string/wcspbrk.c b/src/lib/libc/string/wcspbrk.c
index 943057a2e6..1923abfc89 100644
--- a/src/lib/libc/string/wcspbrk.c
+++ b/src/lib/libc/string/wcspbrk.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcspbrk.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcspbrk.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcspbrk.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ 2/* $NetBSD: wcspbrk.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wcspbrk.c,v 1.2 2000/12/21 05:07:25 itojun Exp 29 * citrus Id: wcspbrk.c,v 1.2 2000/12/21 05:07:25 itojun Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wcspbrk.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37 33
38wchar_t * 34wchar_t *
diff --git a/src/lib/libc/string/wcsrchr.c b/src/lib/libc/string/wcsrchr.c
index ced0fe3aae..3433310c56 100644
--- a/src/lib/libc/string/wcsrchr.c
+++ b/src/lib/libc/string/wcsrchr.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcsrchr.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcsrchr.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcsrchr.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ 2/* $NetBSD: wcsrchr.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wcsrchr.c,v 1.2 2000/12/21 05:07:25 itojun Exp 29 * citrus Id: wcsrchr.c,v 1.2 2000/12/21 05:07:25 itojun Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wcsrchr.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37 33
38wchar_t * 34wchar_t *
diff --git a/src/lib/libc/string/wcsspn.c b/src/lib/libc/string/wcsspn.c
index 80f315f071..5162fa0763 100644
--- a/src/lib/libc/string/wcsspn.c
+++ b/src/lib/libc/string/wcsspn.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcsspn.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcsspn.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcsspn.c,v 1.3 2001/09/21 16:09:15 yamt Exp $ */ 2/* $NetBSD: wcsspn.c,v 1.3 2001/09/21 16:09:15 yamt Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * $Citrus: xpg4dl/FreeBSD/lib/libc/string/wcsspn.c,v 1.3 2001/09/21 16:06:43 yamt Exp $ 29 * $Citrus: xpg4dl/FreeBSD/lib/libc/string/wcsspn.c,v 1.3 2001/09/21 16:06:43 yamt Exp $
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wcsspn.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37 33
38size_t 34size_t
diff --git a/src/lib/libc/string/wcsstr.c b/src/lib/libc/string/wcsstr.c
index 9f3303004a..669e340280 100644
--- a/src/lib/libc/string/wcsstr.c
+++ b/src/lib/libc/string/wcsstr.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcsstr.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcsstr.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcsstr.c,v 1.3 2003/03/05 20:18:17 tshiozak Exp $ */ 2/* $NetBSD: wcsstr.c,v 1.3 2003/03/05 20:18:17 tshiozak Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wcsstr.c,v 1.2 2000/12/21 05:07:25 itojun Exp 29 * citrus Id: wcsstr.c,v 1.2 2000/12/21 05:07:25 itojun Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wcsstr.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37 33
38wchar_t * 34wchar_t *
diff --git a/src/lib/libc/string/wcstok.c b/src/lib/libc/string/wcstok.c
index 619aea8acb..bc1ac3e8cb 100644
--- a/src/lib/libc/string/wcstok.c
+++ b/src/lib/libc/string/wcstok.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcstok.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcstok.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcstok.c,v 1.3 2003/07/10 08:50:48 tshiozak Exp $ */ 2/* $NetBSD: wcstok.c,v 1.3 2003/07/10 08:50:48 tshiozak Exp $ */
3 3
4/*- 4/*-
@@ -42,10 +42,6 @@
42 * FreeBSD: src/lib/libc/string/wcstok.c,v 1.1 2002/09/07 08:16:57 tjr Exp 42 * FreeBSD: src/lib/libc/string/wcstok.c,v 1.1 2002/09/07 08:16:57 tjr Exp
43 */ 43 */
44 44
45#if defined(LIBC_SCCS) && !defined(lint)
46static char *rcsid = "$OpenBSD: wcstok.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
47#endif /* LIBC_SCCS and not lint */
48
49#include <wchar.h> 45#include <wchar.h>
50 46
51wchar_t * 47wchar_t *
diff --git a/src/lib/libc/string/wcswidth.c b/src/lib/libc/string/wcswidth.c
index ff6b4e1d3e..cd240897b5 100644
--- a/src/lib/libc/string/wcswidth.c
+++ b/src/lib/libc/string/wcswidth.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wcswidth.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wcswidth.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wcswidth.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ 2/* $NetBSD: wcswidth.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wcswidth.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp 29 * citrus Id: wcswidth.c,v 1.1 1999/12/29 21:47:45 tshiozak Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wcswidth.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37 33
38int 34int
diff --git a/src/lib/libc/string/wmemchr.c b/src/lib/libc/string/wmemchr.c
index f3b8023c13..8c9517861b 100644
--- a/src/lib/libc/string/wmemchr.c
+++ b/src/lib/libc/string/wmemchr.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wmemchr.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wmemchr.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wmemchr.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ 2/* $NetBSD: wmemchr.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wmemchr.c,v 1.2 2000/12/20 14:08:31 itojun Exp 29 * citrus Id: wmemchr.c,v 1.2 2000/12/20 14:08:31 itojun Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wmemchr.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37 33
38wchar_t * 34wchar_t *
diff --git a/src/lib/libc/string/wmemcmp.c b/src/lib/libc/string/wmemcmp.c
index e35c6207ff..39419aeddc 100644
--- a/src/lib/libc/string/wmemcmp.c
+++ b/src/lib/libc/string/wmemcmp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wmemcmp.c,v 1.3 2005/08/08 05:53:01 espie Exp $ */ 1/* $OpenBSD: wmemcmp.c,v 1.4 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wmemcmp.c,v 1.3 2003/04/06 18:33:23 tshiozak Exp $ */ 2/* $NetBSD: wmemcmp.c,v 1.3 2003/04/06 18:33:23 tshiozak Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wmemcmp.c,v 1.2 2000/12/20 14:08:31 itojun Exp 29 * citrus Id: wmemcmp.c,v 1.2 2000/12/20 14:08:31 itojun Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wmemcmp.c,v 1.3 2005/08/08 05:53:01 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37#include "locale/runetype.h" 33#include "locale/runetype.h"
38 34
diff --git a/src/lib/libc/string/wmemcpy.c b/src/lib/libc/string/wmemcpy.c
index 6e7e030472..9bbd83648e 100644
--- a/src/lib/libc/string/wmemcpy.c
+++ b/src/lib/libc/string/wmemcpy.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wmemcpy.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wmemcpy.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wmemcpy.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ 2/* $NetBSD: wmemcpy.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wmemcpy.c,v 1.2 2000/12/20 14:08:31 itojun Exp 29 * citrus Id: wmemcpy.c,v 1.2 2000/12/20 14:08:31 itojun Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wmemcpy.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <string.h> 32#include <string.h>
37#include <wchar.h> 33#include <wchar.h>
38 34
diff --git a/src/lib/libc/string/wmemmove.c b/src/lib/libc/string/wmemmove.c
index 5de2430656..21bbabcd0c 100644
--- a/src/lib/libc/string/wmemmove.c
+++ b/src/lib/libc/string/wmemmove.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wmemmove.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wmemmove.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wmemmove.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ 2/* $NetBSD: wmemmove.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wmemmove.c,v 1.2 2000/12/20 14:08:31 itojun Exp 29 * citrus Id: wmemmove.c,v 1.2 2000/12/20 14:08:31 itojun Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wmemmove.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <string.h> 32#include <string.h>
37#include <wchar.h> 33#include <wchar.h>
38 34
diff --git a/src/lib/libc/string/wmemset.c b/src/lib/libc/string/wmemset.c
index 9db63f05da..ac476dba6a 100644
--- a/src/lib/libc/string/wmemset.c
+++ b/src/lib/libc/string/wmemset.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: wmemset.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ 1/* $OpenBSD: wmemset.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */
2/* $NetBSD: wmemset.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */ 2/* $NetBSD: wmemset.c,v 1.2 2001/01/03 14:29:37 lukem Exp $ */
3 3
4/*- 4/*-
@@ -29,10 +29,6 @@
29 * citrus Id: wmemset.c,v 1.2 2000/12/20 14:08:31 itojun Exp 29 * citrus Id: wmemset.c,v 1.2 2000/12/20 14:08:31 itojun Exp
30 */ 30 */
31 31
32#if defined(LIBC_SCCS) && !defined(lint)
33static char *rcsid = "$OpenBSD: wmemset.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
34#endif /* LIBC_SCCS and not lint */
35
36#include <wchar.h> 32#include <wchar.h>
37 33
38wchar_t * 34wchar_t *