From: Jim Meyering Date: Thu, 29 Jun 2000 11:29:55 +0000 (+0000) Subject: Include or , as appropriate, for declaration of strcmp. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27d8c463f0e6e4b17b7bfa25ac02c3dfc03b4548;p=pspp Include or , as appropriate, for declaration of strcmp. --- diff --git a/lib/same.c b/lib/same.c index 1cfb69322c..dc28c7bdab 100644 --- a/lib/same.c +++ b/lib/same.c @@ -36,6 +36,12 @@ extern int errno; #endif +#if HAVE_STRING_H +# include +#else +# include +#endif + #include "same.h" #include "dirname.h" #include "error.h"