port/getopt: s/#if/#ifdef/ so it still works if HAVE_STRING_H is not defined.

This commit is contained in:
Francois Gouget 2008-03-05 12:07:04 +01:00 committed by Alexandre Julliard
parent 369f4ccdfe
commit 8d8b44089d
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ static char *posixly_correct;
# define my_index strchr
#else
# if HAVE_STRING_H
# ifdef HAVE_STRING_H
# include <string.h>
# else
# include <strings.h>