mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 06:53:33 +00:00
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
27 lines
1.3 KiB
C
27 lines
1.3 KiB
C
#ifndef COSMOPOLITAN_APE_SECTIONS_INTERNAL_H_
|
|
#define COSMOPOLITAN_APE_SECTIONS_INTERNAL_H_
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern const char __comment_start[] __attribute__((__weak__));
|
|
extern unsigned char __executable_start[] __attribute__((__weak__));
|
|
extern unsigned char __privileged_start[] __attribute__((__weak__));
|
|
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__));
|
|
extern unsigned char _tls_align[] __attribute__((__weak__));
|
|
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__));
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_APE_SECTIONS_INTERNAL_H_ */
|