scst.h: Fix definition of __aligned()

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@5762 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2014-09-03 14:00:14 +00:00
parent 3d7ecc4fe3
commit 63810a1abb

View File

@@ -86,7 +86,7 @@ typedef _Bool bool;
#define __packed __attribute__((packed))
#endif
#ifndef __aligned
#define __aligned __attribute__((aligned))
#define __aligned(x) __attribute__((aligned(x)))
#endif
#endif