summaryrefslogtreecommitdiff
path: root/dso
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-02-16 21:04:17 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-02-16 21:04:17 +0000
commit44684315ff9d3808b96cd38dd563c991b1e531b7 (patch)
treecdbbd5f2c9b39d53ab31970bc354f2f2b674f048 /dso
parent49d001d7aeafdd36cb6586cd098b2ff12476a8ed (diff)
downloadlibapr-44684315ff9d3808b96cd38dd563c991b1e531b7.tar.gz
include <string.h> for the strerror() prototype on HP-UX 11
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61239 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso')
-rw-r--r--dso/unix/dso.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/dso/unix/dso.c b/dso/unix/dso.c
index f16467ae4..6ff0baf3f 100644
--- a/dso/unix/dso.c
+++ b/dso/unix/dso.c
@@ -60,6 +60,9 @@
#ifdef HAVE_STDDEF_H
#include <stddef.h>
#endif
+#if APR_HAVE_STRING_H
+#include <string.h> /* for strerror() on HP-UX */
+#endif
static apr_status_t dso_cleanup(void *thedso)
{