]> git.saurik.com Git - apple/libc.git/blobdiff - string/FreeBSD/wcscpy.c
Libc-763.13.tar.gz
[apple/libc.git] / string / FreeBSD / wcscpy.c
index b4c236a780f33ac121de87b9e82444846d2a7f40..d2f929a12350809d58c931d0ff0f8046a83a5bf6 100644 (file)
 __RCSID("$NetBSD: wcscpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $");
 #endif /* LIBC_SCCS and not lint */
 #endif
-__FBSDID("$FreeBSD: src/lib/libc/string/wcscpy.c,v 1.8 2002/09/26 09:23:07 tjr Exp $");
+__FBSDID("$FreeBSD: src/lib/libc/string/wcscpy.c,v 1.9 2009/02/03 17:58:20 danger Exp $");
 
 #include <wchar.h>
 
 wchar_t *
-wcscpy(s1, s2)
-       wchar_t * __restrict s1;
-       const wchar_t * __restrict s2;
+wcscpy(wchar_t * __restrict s1, const wchar_t * __restrict s2)
 {
        wchar_t *cp;