summaryrefslogtreecommitdiff
path: root/buckets/apr_buckets_mmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'buckets/apr_buckets_mmap.c')
-rw-r--r--buckets/apr_buckets_mmap.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/buckets/apr_buckets_mmap.c b/buckets/apr_buckets_mmap.c
index 2ffdab6f..a8669761 100644
--- a/buckets/apr_buckets_mmap.c
+++ b/buckets/apr_buckets_mmap.c
@@ -52,7 +52,6 @@
* <http://www.apache.org/>.
*/
-#include "httpd.h"
#include "ap_buckets.h"
#include <stdlib.h>
@@ -87,7 +86,7 @@ static void mmap_destroy(void *data)
/*
* XXX: are the start and length arguments useful?
*/
-AP_DECLARE(ap_bucket *) ap_bucket_make_mmap(ap_bucket *b,
+APR_DECLARE(ap_bucket *) ap_bucket_make_mmap(ap_bucket *b,
apr_mmap_t *mm, apr_off_t start, apr_size_t length)
{
ap_bucket_mmap *m;
@@ -110,7 +109,7 @@ AP_DECLARE(ap_bucket *) ap_bucket_make_mmap(ap_bucket *b,
}
-AP_DECLARE(ap_bucket *) ap_bucket_create_mmap(
+APR_DECLARE(ap_bucket *) ap_bucket_create_mmap(
apr_mmap_t *mm, apr_off_t start, apr_size_t length)
{
ap_bucket_do_create(ap_bucket_make_mmap(b, mm, start, length));