13 lines
187 B
C
13 lines
187 B
C
#ifndef GCC_COMPAT_H
|
|
#define GCC_COMPAT_H
|
|
|
|
#ifndef __align
|
|
#define __align(n) __attribute__((aligned(n)))
|
|
#endif
|
|
|
|
#ifndef __packed
|
|
#define __packed __attribute__((packed))
|
|
#endif
|
|
|
|
#endif
|