[BZ #542]
authorRoland McGrath <roland@gnu.org>
Thu, 11 Nov 2004 22:15:51 +0000 (22:15 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 11 Nov 2004 22:15:51 +0000 (22:15 +0000)
2004-11-11  Simon Josefsson  <jas@extundo.com>
[BZ #542]
* sysdeps/generic/strtok_r.c [HAVE_CONFIG_H]: Include config.h.
[!_LIBC]: Include strtok_r.h (in gnulib), map __strtok_r to
strtok_r and __rawmemchr to strch.
(__strtok_r): Use C89 prototype.
[weak_alias]: Move calls to libc_hidden_def and weak_alias into
this #ifdef.

ChangeLog
sysdeps/generic/strtok_r.c

index 41dedbb..c89325a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2004-11-11  Simon Josefsson  <jas@extundo.com>
+
+       [BZ #542]
+       * sysdeps/generic/strtok_r.c [HAVE_CONFIG_H]: Include config.h.
+       [!_LIBC]: Include strtok_r.h (in gnulib), map __strtok_r to
+       strtok_r and __rawmemchr to strch.
+       (__strtok_r): Use C89 prototype.
+       [weak_alias]: Move calls to libc_hidden_def and weak_alias into
+       this #ifdef.
+
 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
 
        [BZ #541]
index 3a5c047..b11cb52 100644 (file)
    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
    02111-1307 USA.  */
 
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 #include <string.h>
 
 #undef strtok_r
 #undef __strtok_r
 
+#ifndef _LIBC
+/* Get specification.  */
+# include "strtok_r.h"
+# define __strtok_r strtok_r
+# define __rawmemchr strchr
+#endif
+
 /* Parse S into tokens separated by characters in DELIM.
    If S is NULL, the saved pointer in SAVE_PTR is used as
    the next starting point.  For example:
                // s = "abc\0-def\0"
 */
 char *
-__strtok_r (s, delim, save_ptr)
-     char *s;
-     const char *delim;
-     char **save_ptr;
+__strtok_r (char *s, const char *delim, char **save_ptr)
 {
   char *token;
 
@@ -65,5 +73,7 @@ __strtok_r (s, delim, save_ptr)
     }
   return token;
 }
+#ifdef weak_alias
 libc_hidden_def (__strtok_r)
 weak_alias (__strtok_r, strtok_r)
+#endif