dreid 01/06/17 18:19:01
Modified: include apr_sms.h
Log:
Sander pointed out it might be worthwhile namespace protecting these
a little more as it's a public header file :)
Submitted by: Sander Striker <[EMAIL PROTECTED]>
Reviewed by: David Reid <[EMAIL PROTECTED]>
Revision Changes Path
1.17 +2 -2 apr/include/apr_sms.h
Index: apr_sms.h
===================================================================
RCS file: /home/cvs/apr/include/apr_sms.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- apr_sms.h 2001/06/17 21:07:43 1.16
+++ apr_sms.h 2001/06/18 01:19:01 1.17
@@ -78,10 +78,10 @@
#define APR_PARENT_CLEANUP 0x0002
/* Alignment macro's */
-#define ALIGN(size, boundary) \
+#define APR_ALIGN(size, boundary) \
((size) + (((boundary) - ((size) & ((boundary) - 1))) & ((boundary) -
1)))
-#define ALIGN_DEFAULT(size) ALIGN(size, 8)
+#define APR_ALIGN_DEFAULT(size) APR_ALIGN(size, 8)
/**