summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-04-01 02:19:22 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-04-01 02:19:22 +0000
commit45c12edf245326509f9d36867a4c68b8b742598a (patch)
tree5b2865645ec526d92b7c09880c7377aa6b743c6f /include
parentba45b0936483fb6ae3d9eedf72c357141a616250 (diff)
downloadlibapr-util-45c12edf245326509f9d36867a4c68b8b742598a.tar.gz
Fix Jerry Baker's observed compilation faults for cvs head and 2.0.34,
courtesy Cliff Woolley's patch and observations. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58586 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_buckets.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/apr_buckets.h b/include/apr_buckets.h
index b159ca09..b1e5dbd2 100644
--- a/include/apr_buckets.h
+++ b/include/apr_buckets.h
@@ -824,26 +824,26 @@ APU_DECLARE(apr_status_t) apr_brigade_vprintf(apr_bucket_brigade *b,
* to allocate the memory handed out by the allocator]
* @warning The allocator must never be used by more than one thread at a time.
*/
-APU_DECLARE(apr_bucket_alloc_t *) apr_bucket_alloc_create(apr_pool_t *p);
+APU_DECLARE_NONSTD(apr_bucket_alloc_t *) apr_bucket_alloc_create(apr_pool_t *p);
/**
* Destroy a bucket allocator.
* @param list The allocator to be destroyed
*/
-APU_DECLARE(void) apr_bucket_alloc_destroy(apr_bucket_alloc_t *list);
+APU_DECLARE_NONSTD(void) apr_bucket_alloc_destroy(apr_bucket_alloc_t *list);
/**
* Allocate memory for use by the buckets.
* @param size The amount to allocate.
* @param list The allocator from which to allocate the memory.
*/
-APU_DECLARE(void *) apr_bucket_alloc(apr_size_t size, apr_bucket_alloc_t *list);
+APU_DECLARE_NONSTD(void *) apr_bucket_alloc(apr_size_t size, apr_bucket_alloc_t *list);
/**
* Free memory previously allocated with apr_bucket_alloc().
* @param block The block of memory to be freed.
*/
-APU_DECLARE(void) apr_bucket_free(void *block);
+APU_DECLARE_NONSTD(void) apr_bucket_free(void *block);
/* ***** Bucket Functions ***** */