mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 11:53:32 +00:00
[LIBMPG123]
Fix definition of ALIGN() macro for MSVC. Fixes build. svn path=/trunk/; revision=52317
This commit is contained in:
@@ -58,7 +58,11 @@ enum optcla decclass(const enum optdec);
|
||||
|
||||
/* this is included in mpg123.h, which includes config.h */
|
||||
#ifdef CCALIGN
|
||||
#ifdef _MSC_VER
|
||||
#define ALIGNED(a) __declspec(align(a))
|
||||
#else
|
||||
#define ALIGNED(a) __attribute__((aligned(a)))
|
||||
#endif
|
||||
#else
|
||||
#define ALIGNED(a)
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user