blob: fe290e3349be4ff090d7fd5a0ebcc7ec800f046a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _ASM_GENERIC_SECTIONS_H_
#define _ASM_GENERIC_SECTIONS_H_
/* References to section boundaries */
extern char _text, _etext;
extern char _data, _edata;
extern char __bss_start;
extern char __init_begin, __init_end;
#endif /* _ASM_GENERIC_SECTIONS_H_ */
|