]> git.saurik.com Git - apple/libc.git/blobdiff - string/FreeBSD/wcspbrk.c
Libc-763.11.tar.gz
[apple/libc.git] / string / FreeBSD / wcspbrk.c
index 550244081b882b80173e577ef0823ea4ab608038..ef12064f7cc3949e0b9f612d44a0599e61ae4ba5 100644 (file)
 __RCSID("$NetBSD: wcspbrk.c,v 1.1 2000/12/23 23:14:37 itojun Exp $");
 #endif /* LIBC_SCCS and not lint */
 #endif
-__FBSDID("$FreeBSD: src/lib/libc/string/wcspbrk.c,v 1.6 2002/09/21 00:29:23 tjr Exp $");
+__FBSDID("$FreeBSD: src/lib/libc/string/wcspbrk.c,v 1.7 2009/02/03 17:58:20 danger Exp $");
 
 #include <wchar.h>
 
 wchar_t *
-wcspbrk(s, set)
-       const wchar_t *s;
-       const wchar_t *set;
+wcspbrk(const wchar_t *s, const wchar_t *set)
 {
        const wchar_t *p;
        const wchar_t *q;