2022-10-14 09:52:35 -07:00
|
|
|
#ifndef COSMOPOLITAN_APE_SECTIONS_INTERNAL_H_
|
|
|
|
#define COSMOPOLITAN_APE_SECTIONS_INTERNAL_H_
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
2023-06-08 23:44:03 -07:00
|
|
|
extern const char __comment_start[] __attribute__((__weak__));
|
2023-05-18 19:05:08 -07:00
|
|
|
extern unsigned char __executable_start[] __attribute__((__weak__));
|
2023-06-08 23:44:03 -07:00
|
|
|
extern unsigned char __privileged_start[] __attribute__((__weak__));
|
2023-05-18 19:05:08 -07:00
|
|
|
extern unsigned char _ehead[] __attribute__((__weak__));
|
|
|
|
extern unsigned char _etext[] __attribute__((__weak__));
|
|
|
|
extern unsigned char _edata[] __attribute__((__weak__));
|
|
|
|
extern unsigned char _ezip[] __attribute__((__weak__));
|
|
|
|
extern unsigned char _end[] __attribute__((__weak__));
|
|
|
|
extern unsigned char _ereal[] __attribute__((__weak__));
|
|
|
|
extern unsigned char _tdata_start[] __attribute__((__weak__));
|
|
|
|
extern unsigned char _tdata_end[] __attribute__((__weak__));
|
|
|
|
extern unsigned char _tbss_start[] __attribute__((__weak__));
|
|
|
|
extern unsigned char _tbss_end[] __attribute__((__weak__));
|
2023-06-03 08:12:13 -07:00
|
|
|
extern unsigned char _tls_align[] __attribute__((__weak__));
|
2023-05-18 19:05:08 -07:00
|
|
|
extern unsigned char __test_start[] __attribute__((__weak__));
|
|
|
|
extern unsigned char __ro[] __attribute__((__weak__));
|
|
|
|
extern uint8_t __data_start[] __attribute__((__weak__));
|
|
|
|
extern uint8_t __data_end[] __attribute__((__weak__));
|
|
|
|
extern uint8_t __bss_start[] __attribute__((__weak__));
|
|
|
|
extern uint8_t __bss_end[] __attribute__((__weak__));
|
2023-12-08 12:52:24 -08:00
|
|
|
extern unsigned char ape_phdrs[] __attribute__((__weak__));
|
2022-10-14 09:52:35 -07:00
|
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* COSMOPOLITAN_APE_SECTIONS_INTERNAL_H_ */
|