summaryrefslogtreecommitdiff
path: root/lib/strpbrk.c
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2006-09-19 13:31:19 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2006-09-19 13:31:19 +0000
commita65c101d4e5fdb2f29a84663fef330ac8aeca276 (patch)
treedbbf1404d7040e3a9e90a8ac4b8bcc57b606ee8b /lib/strpbrk.c
parente37f9eb4029b1a85a3990975969f523cfe4db3bc (diff)
downloadxine-lib-a65c101d4e5fdb2f29a84663fef330ac8aeca276.tar.gz
xine-lib-a65c101d4e5fdb2f29a84663fef330ac8aeca276.tar.bz2
Finish the latest change - fix broken build for some platforms (BSD, Win, Solaris).
CVS patchset: 8271 CVS date: 2006/09/19 13:31:19
Diffstat (limited to 'lib/strpbrk.c')
-rw-r--r--lib/strpbrk.c2
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;