diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-05-19 07:09:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-05-19 07:09:32 +0000 |
commit | 4950159344aca6bf56176bfbcb9889c10ce5f9a0 (patch) | |
tree | b880e40eb1a90b98af868e585e62940f055461ff | |
parent | 91da8b09dfbe6474140c2e30fd187b30373e467a (diff) | |
download | gunmake-4950159344aca6bf56176bfbcb9889c10ce5f9a0.tar.gz |
automatically generated from GPLed version
-rw-r--r-- | getopt.c | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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) |