From 9b022d6db80564cfc10c7f18e5d05cedb32f6375 Mon Sep 17 00:00:00 2001 From: Thomas Fitzsimmons Date: Fri, 19 Jul 2002 20:36:09 +0000 Subject: * libc/argz/argz_replace.c: Include buf_findstr.h. * libc/argz/buf_findstr.c: Likewise. * libc/argz/envz_entry.c: Include buf_findstr.h. Cast return value to (char *). * libc/argz/envz_get.c: Likewise. * libc/include/sys/unistd.h: Add getopt and getsubopt declarations. * libc/stdlib/Makefile.am (LIB_SOURCES): Add getsubopt.c. * libc/stdlib/getsubopt.3: New file. * libc/stdlib/getsubopt.c: New file. * libc/sys/linux/machine/i386/socketcall.h (__sockcall_base): Change esp to ebp. --- newlib/libc/argz/buf_findstr.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'newlib/libc/argz/buf_findstr.c') diff --git a/newlib/libc/argz/buf_findstr.c b/newlib/libc/argz/buf_findstr.c index 792706e88..aeb32a943 100644 --- a/newlib/libc/argz/buf_findstr.c +++ b/newlib/libc/argz/buf_findstr.c @@ -9,10 +9,12 @@ #include #include +#include "buf_findstr.h" + /* Find string str in buffer buf of length buf_len. Point buf to character after string, or set it to NULL if end of buffer is reached. Return 1 if found, 0 if not. */ int -buf_findstr(const char *str, const char **buf, size_t *buf_len) +_buf_findstr(const char *str, char **buf, size_t *buf_len) { int i = 0; int j = 0; -- cgit v1.2.3