From 45c12edf245326509f9d36867a4c68b8b742598a Mon Sep 17 00:00:00 2001 From: wrowe Date: Mon, 1 Apr 2002 02:19:22 +0000 Subject: 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 --- include/apr_buckets.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include') 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 ***** */ -- cgit v1.2.1