From 554ad5bb6c7e9036f2e09a4656721c26b92d5028 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sun, 8 Sep 2013 13:55:54 -0700 Subject: [PATCH] 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. --- .../crypto_onetimeauth/poly1305/donna/portable-jane.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/libsodium/crypto_onetimeauth/poly1305/donna/portable-jane.h b/src/libsodium/crypto_onetimeauth/poly1305/donna/portable-jane.h index 75db292f..4d1f93a7 100644 --- a/src/libsodium/crypto_onetimeauth/poly1305/donna/portable-jane.h +++ b/src/libsodium/crypto_onetimeauth/poly1305/donna/portable-jane.h @@ -104,8 +104,6 @@ #define mul32x32_64(a,b) ((uint64_t)(a) * (b)) #define mul32x32_64s(a,b) (((int64_t)(a))*(b)) - - #define ALIGN(x) __attribute__((aligned(x))) #endif /* 0100-compiler-100-icc.h */ @@ -183,8 +181,6 @@ #define mul32x32_64(a,b) __emulu(a,b) #define mul32x32_64s(a,b) __emul(a,b) #endif - - #define ALIGN(x) __declspec(align(x)) #endif /* 0100-compiler-999.h */