summaryrefslogtreecommitdiffstats
path: root/lib/libc/string/wcslcpy.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/wcslcpy.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/wcslcpy.c')
-rw-r--r--lib/libc/string/wcslcpy.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/libc/string/wcslcpy.c b/lib/libc/string/wcslcpy.c
index 101161e9ced..a6acb80d580 100644
--- a/lib/libc/string/wcslcpy.c
+++ b/lib/libc/string/wcslcpy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wcslcpy.c,v 1.1 2005/04/13 16:35:58 espie Exp $ */
+/* $OpenBSD: wcslcpy.c,v 1.2 2005/06/19 22:12:07 espie Exp $ */
/* $NetBSD: wcslcpy.c,v 1.2 2001/01/03 14:33:02 lukem Exp $ */
/* from OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp */
@@ -30,7 +30,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: wcslcpy.c,v 1.1 2005/04/13 16:35:58 espie Exp $";
+static char *rcsid = "$OpenBSD: wcslcpy.c,v 1.2 2005/06/19 22:12:07 espie Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
@@ -42,10 +42,7 @@ static char *rcsid = "$OpenBSD: wcslcpy.c,v 1.1 2005/04/13 16:35:58 espie Exp $"
* Returns wcslen(src); if retval >= siz, truncation occurred.
*/
size_t
-wcslcpy(dst, src, siz)
- wchar_t *dst;
- const wchar_t *src;
- size_t siz;
+wcslcpy(wchar_t *dst, const wchar_t *src, size_t siz)
{
wchar_t *d = dst;
const wchar_t *s = src;