summaryrefslogtreecommitdiffstats
path: root/lib/libc/string/wcsstr.c
diff options
context:
space:
mode:
authorespie <espie@openbsd.org>2005-06-19 22:12:07 +0000
committerespie <espie@openbsd.org>2005-06-19 22:12:07 +0000
commit1c031cf62e216db155a07bad4d48b1226f6cd6e5 (patch)
tree53341afeb32c1bb268d648e60afd1e55e19a72bf /lib/libc/string/wcsstr.c
parentUpdate to sudo 1.6.8p9 (diff)
downloadwireguard-openbsd-1c031cf62e216db155a07bad4d48b1226f6cd6e5.tar.xz
wireguard-openbsd-1c031cf62e216db155a07bad4d48b1226f6cd6e5.zip
K&R -> ANSI
APIWARN okay millert@, otto@
Diffstat (limited to 'lib/libc/string/wcsstr.c')
-rw-r--r--lib/libc/string/wcsstr.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/libc/string/wcsstr.c b/lib/libc/string/wcsstr.c
index 992b5cab0f6..9f3303004a1 100644
--- a/lib/libc/string/wcsstr.c
+++ b/lib/libc/string/wcsstr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wcsstr.c,v 1.1 2005/04/13 16:35:58 espie Exp $ */
+/* $OpenBSD: wcsstr.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */
/* $NetBSD: wcsstr.c,v 1.3 2003/03/05 20:18:17 tshiozak Exp $ */
/*-
@@ -30,19 +30,17 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: wcsstr.c,v 1.1 2005/04/13 16:35:58 espie Exp $";
+static char *rcsid = "$OpenBSD: wcsstr.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
#endif /* LIBC_SCCS and not lint */
#include <wchar.h>
wchar_t *
#ifdef WCSWCS
-wcswcs(big, little)
+wcswcs(const wchar_t *big, const wchar_t *little)
#else
-wcsstr(big, little)
+wcsstr(const wchar_t *big, const wchar_t *little)
#endif
- const wchar_t *big;
- const wchar_t *little;
{
const wchar_t *p;
const wchar_t *q;