Avoid more compiler warnings.

* libc/stdlib/btowc.c: Add missing header.
* libc/stdlib/getopt.c (getopt_internal): Initialize variable.
* libc/stdlib/system.c (do_system) [__CYGWIN__]: Add declaration.
* libc/stdlib/wctob.c: Add missing header.
* libc/string/strcpy.c (strcpy): Avoid warnings.
* libc/string/strrchr.c (strrchr): Likewise.
This commit is contained in:
Eric Blake
2007-05-29 21:26:59 +00:00
parent ad4e943fca
commit b206478328
7 changed files with 16 additions and 3 deletions

View File

@ -2,6 +2,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <reent.h>
#include <string.h>
wint_t
btowc (int c)

View File

@ -153,7 +153,7 @@ getopt_internal (int argc, char *const argv[], const char *shortopts,
char *possible_arg = NULL;
int longopt_match = -1;
int has_arg = -1;
char *cp;
char *cp = NULL;
int arg_next = 0;
/* first, deal with silly parameters and easy stuff */

View File

@ -179,6 +179,7 @@ do_system (ptr, s)
return -1;
else
{
extern int _wait (int *);
int rc = _wait (&status);
if (rc == -1)
return -1;

View File

@ -2,6 +2,7 @@
#include <wchar.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int
wctob (wint_t c)