* lib/strpbrk.c (strpbrk): Don't undefine outside of glibc.
+2018-10-05 Bruno Haible <bruno@clisp.org>
+
+ strpbrk: Make it possible to namespace the defined symbol.
+ * lib/strpbrk.c (strpbrk): Don't undefine outside of glibc.
+
2018-10-05 Bruno Haible <bruno@clisp.org>
strcspn: Make it possible to namespace the defined symbol.
#include <stddef.h>
#include <string.h>
-#undef strpbrk
+#if _LIBC
+# undef strpbrk
+#endif
/* Find the first occurrence in S of any character in ACCEPT. */
char *