Loading...
Searching...
No Matches
Go to the documentation of this file.
22#define ALIGNED(alignment) __attribute__((aligned(alignment)))
32#define PACKED __attribute__((packed))
39#define NORETURN __attribute__((noreturn))
47#define NOINLINE __attribute__((noinline))
56#define CONST_FUNC __attribute__((const))
65#define PURE_FUNC __attribute__((pure))
76#define CONCAT(a, b) CONCAT_INNER(a, b)
81#define CONCAT_INNER(a, b) a##b