[LIBMPG123]

Fix definition of ALIGN() macro for MSVC. Fixes build.

svn path=/trunk/; revision=52317
This commit is contained in:
Timo Kreuzer 2011-06-17 15:35:06 +00:00
parent 92a2b84a97
commit e5e682541c

View file

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