Commit 013b9a84 013b9a846c0c8f633b99c2097dfa1a8f228ce541 by Sam Roberts

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

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