summaryrefslogtreecommitdiff
path: root/wcsmbs/wcsspn.c
diff options
context:
space:
mode:
Diffstat (limited to 'wcsmbs/wcsspn.c')
-rw-r--r--wcsmbs/wcsspn.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/wcsmbs/wcsspn.c b/wcsmbs/wcsspn.c
index db51accb95..ae26506b3b 100644
--- a/wcsmbs/wcsspn.c
+++ b/wcsmbs/wcsspn.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1995-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
@@ -18,13 +18,14 @@
#include <wchar.h>
+#ifdef WCSSPN
+# define wcsspn WCSSPN
+#endif
/* Return the length of the maximum initial segment
of WCS which contains only wide-characters in ACCEPT. */
size_t
-wcsspn (wcs, accept)
- const wchar_t *wcs;
- const wchar_t *accept;
+wcsspn (const wchar_t *wcs, const wchar_t *accept)
{
const wchar_t *p;
const wchar_t *a;