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/index.c')
-rw-r--r--newlib/libc/string/index.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/string/index.c b/newlib/libc/string/index.c
index 13519b435..4a6788512 100644
--- a/newlib/libc/string/index.c
+++ b/newlib/libc/string/index.c
@@ -31,8 +31,7 @@ QUICKREF
#include <strings.h>
char *
-_DEFUN (index, (s, c),
- const char *s,
+index (const char *s,
int c)
{
return strchr (s, c);