From dd611c3aaf84a5329ce7642bf97e61f4fa7f2d65 Mon Sep 17 00:00:00 2001 From: espie <> Date: Sun, 19 Jun 2005 22:12:07 +0000 Subject: K&R -> ANSI APIWARN okay millert@, otto@ --- src/lib/libc/string/wcschr.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/lib/libc/string/wcschr.c') 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 @@ -/* $OpenBSD: wcschr.c,v 1.1 2005/04/13 16:35:58 espie Exp $ */ +/* $OpenBSD: wcschr.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */ /* $NetBSD: wcschr.c,v 1.2 2001/01/03 14:29:36 lukem Exp $ */ /*- @@ -30,15 +30,13 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: wcschr.c,v 1.1 2005/04/13 16:35:58 espie Exp $"; +static char *rcsid = "$OpenBSD: wcschr.c,v 1.2 2005/06/19 22:12:07 espie Exp $"; #endif /* LIBC_SCCS and not lint */ #include wchar_t * -wcschr(s, c) - const wchar_t *s; - wchar_t c; +wcschr(const wchar_t *s, wchar_t c) { const wchar_t *p; -- cgit v1.2.3-55-g6feb