summaryrefslogtreecommitdiff
path: root/memory
diff options
context:
space:
mode:
authorstriker <striker@13f79535-47bb-0310-9956-ffa450edef68>2002-03-02 09:26:07 +0000
committerstriker <striker@13f79535-47bb-0310-9956-ffa450edef68>2002-03-02 09:26:07 +0000
commitff5e63cd3137c0e9dbcc6fc750cac57042c39dc4 (patch)
treec25b2a7b3ce882eacc64188d4648382594f69c63 /memory
parent9a4265797a6010398ab7cecd9d66c76d930267e2 (diff)
downloadlibapr-ff5e63cd3137c0e9dbcc6fc750cac57042c39dc4.tar.gz
Export the APR_ALIGN macros.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63076 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'memory')
-rw-r--r--memory/unix/apr_pools.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/memory/unix/apr_pools.c b/memory/unix/apr_pools.c
index 029ea73aa..f100a3381 100644
--- a/memory/unix/apr_pools.c
+++ b/memory/unix/apr_pools.c
@@ -100,17 +100,6 @@
/*
- * Macros and defines
- */
-
-/* APR_ALIGN() is only to be used to align on a power of 2 boundary */
-#define APR_ALIGN(size, boundary) \
- (((size) + ((boundary) - 1)) & ~((boundary) - 1))
-
-#define APR_ALIGN_DEFAULT(size) APR_ALIGN(size, 8)
-
-
-/*
* Structures
*/