summaryrefslogtreecommitdiff
path: root/dso/unix/dso.c
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2000-11-27 19:13:15 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2000-11-27 19:13:15 +0000
commit8827d795f8a18a2a533d71e59ba2b2a2fdb33df6 (patch)
tree0d94ddd329ec889036815d358e286548e373fe94 /dso/unix/dso.c
parentc1af267ca6bec73cceb0dd1109669e4139a8f524 (diff)
downloadlibapr-8827d795f8a18a2a533d71e59ba2b2a2fdb33df6.tar.gz
Get NULL defined on some systems (e.g., FreeBSD 3.4).
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60800 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso/unix/dso.c')
-rw-r--r--dso/unix/dso.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/dso/unix/dso.c b/dso/unix/dso.c
index 710e68729..d9c3f6295 100644
--- a/dso/unix/dso.c
+++ b/dso/unix/dso.c
@@ -56,6 +56,10 @@
#if APR_HAS_DSO
+#ifdef HAVE_STDDEF_H
+#include <stddef.h>
+#endif
+
apr_status_t apr_dso_load(apr_dso_handle_t **res_handle, const char *path,
apr_pool_t *ctx)
{