You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Karl Fogel <kf...@galois.collab.net> on 2000/11/09 15:04:17 UTC

fix for APR compile warning

'Nuff said:


2000-11-09  Karl Fogel  <kf...@collab.net>

	* apr_pools.c: #include <string.h>, for memset().


--- lib/apr_pools.c	Thu Nov  9 08:01:56 2000
+++ lib/apr_pools.c	Thu Nov  9 08:02:05 2000
@@ -91,6 +91,9 @@
 #include <fcntl.h>
 #endif
 
+#ifdef HAVE_STRING_H
+#include <string.h>
+#endif
 #ifdef HAVE_STDLIB_H
 #include <stdlib.h>
 #endif