diff options
Diffstat (limited to 'gcc/getopt.c')
-rw-r--r-- | gcc/getopt.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gcc/getopt.c b/gcc/getopt.c index a9a101f3c1b..92072711415 100644 --- a/gcc/getopt.c +++ b/gcc/getopt.c @@ -201,15 +201,18 @@ static char *posixly_correct; # define my_index strchr #else +# if HAVE_STRING_H +# include <string.h> +# else +# include <strings.h> +# endif + /* Avoid depending on library functions or files whose names are inconsistent. */ #ifndef getenv extern char *getenv (); #endif -#ifndef strncmp -extern int strncmp (); -#endif static char * my_index (str, chr) |