]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - string/strpbrk.c
PowerPC: optimized strpbrk for POWER7
[thirdparty/glibc.git] / string / strpbrk.c
index ce33b684ef675f20969296144211929c299d3bc4..a6942421614d087f84aaf44bd6a40857062cf5d7 100644 (file)
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#if defined _LIBC || defined HAVE_CONFIG_H
-# include <string.h>
-#endif
+#include <string.h>
 
 #undef strpbrk
 
+#ifndef STRPBRK
+#define STRPBRK strpbrk
+#endif
+
 /* Find the first occurrence in S of any character in ACCEPT.  */
 char *
-strpbrk (s, accept)
-     const char *s;
-     const char *accept;
+STRPBRK (const char *s, const char *accept)
 {
   while (*s != '\0')
     {