summaryrefslogtreecommitdiff
path: root/buckets/apr_buckets_mmap.c
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-12-05 01:02:51 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-12-05 01:02:51 +0000
commit4c2d777a149b47ef2fdd52b334d4893b10aa4514 (patch)
treebad8d38b29f24503b18f9664ea7ed8cc1518c814 /buckets/apr_buckets_mmap.c
parent6b99b01103ac5bbe675bd90b504c25db6f107eac (diff)
downloadlibapr-util-4c2d777a149b47ef2fdd52b334d4893b10aa4514.tar.gz
Get the buckets building in apr-util
git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@57938 13f79535-47bb-0310-9956-ffa450edef68
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));