blob: 45b7ac3bdf3f7899dc2070c6470f9d9bc34f0037 (
plain) (
blame)
1
2
3
4
5
6
|
#ifndef APOS_COMPILER_ATTRIBUTES_H
#define __section(section) __attribute__((__section__(section)))
#define __noinline __attribute__((noinline))
#endif /* APOS_COMPILER_ATTRIBUTES_H */
|