libextractor

GNU libextractor
Log | Files | Refs | Submodules | README | LICENSE

commit dfcfb9b91ebc5772b39aff76e40a1ade47b4b604
parent 098a3d0595429d2fa2dd76ad8b75e9e22213c50c
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 25 Sep 2012 08:52:38 +0000

-include string.h if present for strlen on freeBSD

Diffstat:
Msrc/main/getopt.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/getopt.c b/src/main/getopt.c @@ -72,9 +72,9 @@ USA. */ #ifdef VMS #include <unixlib.h> -#if HAVE_STRING_H - 0 -#include <string.h> #endif +#if HAVE_STRING_H +#include <string.h> #endif #if defined (WIN32) && !defined (__CYGWIN32__)