Remove ALIGN definition from portable-jane.h

A macro of the same name is already defined by OpenBSD's libc, and the
portable-jane.h one is not in use yet.
This commit is contained in:
Frank Denis 2013-09-08 13:55:54 -07:00
parent 9ee3bd5d56
commit 554ad5bb6c

View File

@ -104,8 +104,6 @@
#define mul32x32_64(a,b) ((uint64_t)(a) * (b)) #define mul32x32_64(a,b) ((uint64_t)(a) * (b))
#define mul32x32_64s(a,b) (((int64_t)(a))*(b)) #define mul32x32_64s(a,b) (((int64_t)(a))*(b))
#define ALIGN(x) __attribute__((aligned(x)))
#endif #endif
/* 0100-compiler-100-icc.h */ /* 0100-compiler-100-icc.h */
@ -183,8 +181,6 @@
#define mul32x32_64(a,b) __emulu(a,b) #define mul32x32_64(a,b) __emulu(a,b)
#define mul32x32_64s(a,b) __emul(a,b) #define mul32x32_64s(a,b) __emul(a,b)
#endif #endif
#define ALIGN(x) __declspec(align(x))
#endif #endif
/* 0100-compiler-999.h */ /* 0100-compiler-999.h */