diff options
author | espie <> | 2005-06-19 22:12:07 +0000 |
---|---|---|
committer | espie <> | 2005-06-19 22:12:07 +0000 |
commit | dd611c3aaf84a5329ce7642bf97e61f4fa7f2d65 (patch) | |
tree | 4449ef0e49aca9138958d50858c3ce50255544ca /src/lib/libc/string/wcschr.c | |
parent | 7019160947103ed769aa02b61ad609c0822a53cc (diff) | |
download | openbsd-dd611c3aaf84a5329ce7642bf97e61f4fa7f2d65.tar.gz openbsd-dd611c3aaf84a5329ce7642bf97e61f4fa7f2d65.tar.bz2 openbsd-dd611c3aaf84a5329ce7642bf97e61f4fa7f2d65.zip |
K&R -> ANSI
APIWARN
okay millert@, otto@
Diffstat (limited to 'src/lib/libc/string/wcschr.c')
-rw-r--r-- | src/lib/libc/string/wcschr.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/lib/libc/string/wcschr.c b/src/lib/libc/string/wcschr.c index eb4e65a85d..8086122517 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.1 2005/04/13 16:35:58 espie Exp $ */ | 1 | /* $OpenBSD: wcschr.c,v 1.2 2005/06/19 22:12:07 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 | /*- |
@@ -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: wcschr.c,v 1.1 2005/04/13 16:35:58 espie Exp $"; | 33 | static char *rcsid = "$OpenBSD: wcschr.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 | wchar_t * | 38 | wchar_t * |
39 | wcschr(s, c) | 39 | wcschr(const wchar_t *s, wchar_t c) |
40 | const wchar_t *s; | ||
41 | wchar_t c; | ||
42 | { | 40 | { |
43 | const wchar_t *p; | 41 | const wchar_t *p; |
44 | 42 | ||