From ba94076384960ee2d5acead7dc8725ab79658545 Mon Sep 17 00:00:00 2001 From: laiwei360735 <1655919897@qq.com> Date: Fri, 7 Jul 2017 12:46:42 +0800 Subject: [PATCH] Delete align.h --- crypto/sha3/COMMEN/align.h | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 crypto/sha3/COMMEN/align.h diff --git a/crypto/sha3/COMMEN/align.h b/crypto/sha3/COMMEN/align.h deleted file mode 100644 index 9744a007..00000000 --- a/crypto/sha3/COMMEN/align.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef _align_h_ -#define _align_h_ - -#ifdef ALIGN -#undef ALIGN -#endif - -#if defined(__GNUC__) -#define ALIGN(x) __attribute__ ((aligned(x))) -#elif defined(_MSC_VER) -#define ALIGN(x) __declspec(align(x)) -#elif defined(__ARMCC_VERSION) -#define ALIGN(x) __align(x) -#else -#define ALIGN(x) -#endif - -#endif