summaryrefslogtreecommitdiff
path: root/sysdeps/generic/strtok_r.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-05-03 23:49:46 +0000
committerUlrich Drepper <drepper@redhat.com>1999-05-03 23:49:46 +0000
commit9f509acb28ecbebb1bf25069fd60219bc85971ac (patch)
tree03785f5c9c9d3665a686a6c12343a0d5a70ffce3 /sysdeps/generic/strtok_r.c
parente0faeea74fc885c53f03b1cc3a3b90aef51185ce (diff)
Update.
* sysdeps/generic/strtok_r.c: Use rawmemchr instead of strchr. * sysdeps/generic/strtok.c: Likewise.
Diffstat (limited to 'sysdeps/generic/strtok_r.c')
-rw-r--r--sysdeps/generic/strtok_r.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/generic/strtok_r.c b/sysdeps/generic/strtok_r.c
index 3105e6a568..4acda149b6 100644
--- a/sysdeps/generic/strtok_r.c
+++ b/sysdeps/generic/strtok_r.c
@@ -1,5 +1,5 @@
/* Reentrant string tokenizer. Generic version.
- Copyright (C) 1991, 1996, 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1991, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -53,7 +53,7 @@ __strtok_r (s, delim, save_ptr)
s = strpbrk (token, delim);
if (s == NULL)
/* This token finishes the string. */
- *save_ptr = strchr (token, '\0');
+ *save_ptr = __rawmemchr (token, '\0');
else
{
/* Terminate the token and make *SAVE_PTR point past it. */