summaryrefslogtreecommitdiffstats
path: root/defines.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-04-23 22:59:51 +1000
committerDamien Miller <djm@mindrot.org>2002-04-23 22:59:51 +1000
commitd77facda1a3fa4e495761c9d02608edfd8f74f68 (patch)
treeba63bbfb1570ac8f3b3fffaeeab8075a08e3a342 /defines.h
parentf5fea44ae33f033a9113ffe52b4e37317e293fc8 (diff)
- (djm) Bug #213: Simplify CMSG_ALIGN macros to avoid symbol clashes.
Reported by Doug Manton <dmanton@emea.att.com>
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/defines.h b/defines.h
index c6b08c40..f74ca0d8 100644
--- a/defines.h
+++ b/defines.h
@@ -1,7 +1,7 @@
#ifndef _DEFINES_H
#define _DEFINES_H
-/* $Id: defines.h,v 1.87 2002/04/23 10:23:00 djm Exp $ */
+/* $Id: defines.h,v 1.88 2002/04/23 12:59:51 djm Exp $ */
/* Constants */
@@ -393,14 +393,11 @@ struct winsize {
# define howmany(x,y) (((x)+((y)-1))/(y))
#endif
-#ifndef ALIGNBYTES
-#define ALIGNBYTES (sizeof(int) - 1)
-#endif
-#ifndef ALIGN
-#define ALIGN(p) (((u_int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
+#ifndef OSSH_ALIGNBYTES
+#define OSSH_ALIGNBYTES (sizeof(int) - 1)
#endif
#ifndef __CMSG_ALIGN
-#define __CMSG_ALIGN(len) ALIGN(len)
+#define __CMSG_ALIGN(p) (((u_int)(p) + OSSH_ALIGNBYTES) &~ OSSH_ALIGNBYTES)
#endif
/* Length of the contents of a control message of length len */