Skip to content
Snippets Groups Projects
Commit d889d5f1 authored by Howard Chu's avatar Howard Chu
Browse files

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

parent 84b91f70
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment