summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-11-09 18:17:29 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-11-09 18:17:29 +0000
commitfb5519447aec368a844ca989d3f18c9feb6308b6 (patch)
tree28e00f9e05990d531238a466f103aacc0f1a5ba0 /lib
parent4a0a88352edbf3e029bea7865d80d745ce3a1ba5 (diff)
downloadlibapr-fb5519447aec368a844ca989d3f18c9feb6308b6.tar.gz
#include <string.h>, for memset().
Submitted by: Karl Fogel <kfogel@collab.net> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60672 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'lib')
-rw-r--r--lib/apr_pools.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/apr_pools.c b/lib/apr_pools.c
index 2edff5c85..736a0efd1 100644
--- a/lib/apr_pools.c
+++ b/lib/apr_pools.c
@@ -91,6 +91,9 @@
#include <fcntl.h>
#endif
+#ifdef HAVE_STRING_H
+#include <string.h>
+#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif