This commit is contained in:
Zhi Guan
2017-05-13 22:58:33 +08:00
parent a55b1a4efb
commit 95ab1114af
15 changed files with 945 additions and 1061 deletions

View File

@@ -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