Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _ASM_GENERIC_SECTIONS_H_ |
| 2 | #define _ASM_GENERIC_SECTIONS_H_ |
| 3 | |
| 4 | /* References to section boundaries */ |
| 5 | |
| 6 | extern char _text[], _stext[], _etext[]; |
| 7 | extern char _data[], _sdata[], _edata[]; |
| 8 | extern char __bss_start[], __bss_stop[]; |
| 9 | extern char __init_begin[], __init_end[]; |
| 10 | extern char _sinittext[], _einittext[]; |
David Woodhouse | 075d6eb | 2005-05-05 16:15:09 -0700 | [diff] [blame] | 11 | extern char _sextratext[] __attribute__((weak)); |
| 12 | extern char _eextratext[] __attribute__((weak)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | extern char _end[]; |
| 14 | |
| 15 | #endif /* _ASM_GENERIC_SECTIONS_H_ */ |