Remove useless code

This commit is contained in:
Zhi Guan
2019-09-03 18:32:27 +08:00
parent c8fab0ffac
commit 54c7dc3442
13 changed files with 5144 additions and 7460 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