Commit 013b9a84 013b9a846c0c8f633b99c2097dfa1a8f228ce541 by Sam Roberts

Added <strings.h> for systems that have it.

1 parent 37d07972
......@@ -31,6 +31,9 @@
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#include <sys/wait.h>
#include <sys/types.h>
#ifdef HAVE_STDARG_H
......