diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2006-09-19 13:31:19 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2006-09-19 13:31:19 +0000 |
commit | a65c101d4e5fdb2f29a84663fef330ac8aeca276 (patch) | |
tree | dbbf1404d7040e3a9e90a8ac4b8bcc57b606ee8b /lib/strtok_r.c | |
parent | e37f9eb4029b1a85a3990975969f523cfe4db3bc (diff) | |
download | xine-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/strtok_r.c')
-rw-r--r-- | lib/strtok_r.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/strtok_r.c b/lib/strtok_r.c index 733290422..cead029a2 100644 --- a/lib/strtok_r.c +++ b/lib/strtok_r.c @@ -1,5 +1,5 @@ /* - * written for xine project, 2004 + * written for xine project, 2004-2006 * * public domain replacement function for strtok_r() * @@ -10,7 +10,7 @@ #include <stddef.h> #include <string.h> -char *_xine_private_strtok_r(char *s, const char *delim, char **ptrptr) { +char *xine_private_strtok_r(char *s, const char *delim, char **ptrptr) { char *next; size_t toklen, cutlen; |