diff options
Diffstat (limited to 'src/lib/libc/string/wcscspn.c')
-rw-r--r-- | src/lib/libc/string/wcscspn.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/lib/libc/string/wcscspn.c b/src/lib/libc/string/wcscspn.c index 905c937695..59a9510156 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.1 2005/04/13 16:35:58 espie Exp $ */ | 1 | /* $OpenBSD: wcscspn.c,v 1.2 2005/06/19 22:12:07 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 | /*- |
@@ -30,15 +30,13 @@ | |||
30 | */ | 30 | */ |
31 | 31 | ||
32 | #if defined(LIBC_SCCS) && !defined(lint) | 32 | #if defined(LIBC_SCCS) && !defined(lint) |
33 | static char *rcsid = "$OpenBSD: wcscspn.c,v 1.1 2005/04/13 16:35:58 espie Exp $"; | 33 | static char *rcsid = "$OpenBSD: wcscspn.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; |
34 | #endif /* LIBC_SCCS and not lint */ | 34 | #endif /* LIBC_SCCS and not lint */ |
35 | 35 | ||
36 | #include <wchar.h> | 36 | #include <wchar.h> |
37 | 37 | ||
38 | size_t | 38 | size_t |
39 | wcscspn(s, set) | 39 | wcscspn(const wchar_t *s, const wchar_t *set) |
40 | const wchar_t *s; | ||
41 | const wchar_t *set; | ||
42 | { | 40 | { |
43 | const wchar_t *p; | 41 | const wchar_t *p; |
44 | const wchar_t *q; | 42 | const wchar_t *q; |