Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/strpbrk.c')
-rw-r--r--newlib/libc/string/strpbrk.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/string/strpbrk.c b/newlib/libc/string/strpbrk.c
index f70efc1ea..774db1e6d 100644
--- a/newlib/libc/string/strpbrk.c
+++ b/newlib/libc/string/strpbrk.c
@@ -25,8 +25,7 @@ PORTABILITY
#include <string.h>
char *
-_DEFUN (strpbrk, (s1, s2),
- const char *s1,
+strpbrk (const char *s1,
const char *s2)
{
const char *c = s2;