From 8d8b44089d714886d891b69db100a3e1b9b88260 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 5 Mar 2008 12:07:04 +0100 Subject: [PATCH] port/getopt: s/#if/#ifdef/ so it still works if HAVE_STRING_H is not defined. --- libs/port/getopt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/port/getopt.c b/libs/port/getopt.c index dae56ec5c49..7bcf2795e6a 100644 --- a/libs/port/getopt.c +++ b/libs/port/getopt.c @@ -212,7 +212,7 @@ static char *posixly_correct; # define my_index strchr #else -# if HAVE_STRING_H +# ifdef HAVE_STRING_H # include # else # include