diff options
Diffstat (limited to 'lib/strpbrk.c')
-rw-r--r-- | lib/strpbrk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strpbrk.c b/lib/strpbrk.c index 557c1a57b..34c47fc48 100644 --- a/lib/strpbrk.c +++ b/lib/strpbrk.c @@ -1,7 +1,7 @@ #include <stddef.h> /* Shamefully copied from glibc 2.2.3 */ -char *_xine_private_strpbrk(const char *s, const char *accept) { +char *xine_private_strpbrk(const char *s, const char *accept) { while(*s != '\0') { const char *a = accept; |