Use both <string.h> and <strings.h> if BOTH_STRINGS_H is defined

This commit is contained in:
Howard Chu 2002-07-26 11:31:29 +00:00
parent 84b91f70ad
commit d889d5f1dc

View file

@ -20,7 +20,9 @@
#else
# ifdef HAVE_STRING_H
# include <string.h>
# elif HAVE_STRINGS_H
# endif
# if defined(HAVE_STRINGS_H) && (!defined(HAVE_STRING_H) ||
defined(BOTH_STRINGS_H))
# include <strings.h>
# endif