]> git.saurik.com Git - apple/libc.git/blobdiff - string/FreeBSD/wcscat.c
Libc-1081.1.3.tar.gz
[apple/libc.git] / string / FreeBSD / wcscat.c
index cf7812ffd13970acd88625d62c78477d3ed0ddb8..00cd361ad23df48efea3a9b063bb053c0c1e0bb8 100644 (file)
 __RCSID("$NetBSD: wcscat.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/wcscat.c,v 1.8 2002/09/26 09:28:55 tjr Exp $");
+__FBSDID("$FreeBSD: src/lib/libc/string/wcscat.c,v 1.9 2009/02/03 17:58:20 danger Exp $");
 
 #include <wchar.h>
 
 wchar_t *
-wcscat(s1, s2)
-       wchar_t * __restrict s1;
-       const wchar_t * __restrict s2;
+wcscat(wchar_t * __restrict s1, const wchar_t * __restrict s2)
 {
        wchar_t *cp;