blob: 1c4bc9dcd42505e44ce210011f603ef2d6e18758 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#ifndef APOS_INIT_H
#define APOS_INIT_H
#include <apos/compiler_attributes.h>
#define __init __section(".init.text")
#define __initdata __section(".init.data")
#endif /* APOS_INIT_H */
|