1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-17 04:41:59 +02:00

Update from gnulib (trivial changes).

This commit is contained in:
Jim Meyering
2002-12-01 10:42:12 +00:00
parent 422e4b4c3a
commit c198111648

View File

@@ -20,6 +20,14 @@
# include <config.h>
#endif
#include <stddef.h>
#if defined _LIBC || HAVE_STRING_H
# include <string.h>
#endif
#undef strpbrk
/* Find the first occurrence in S of any character in ACCEPT. */
char *
strpbrk (const char *s, const char *accept)
@@ -33,5 +41,5 @@ strpbrk (const char *s, const char *accept)
++s;
}
return 0;
return NULL;
}