7 lines
102 B
C
7 lines
102 B
C
#ifndef __STDALIGN_H__
|
|
#define __STDALIGN_H__
|
|
|
|
#define alignas(a) __attribute__((aligned(a)))
|
|
|
|
#endif
|