2020-02-04 13:44:48 +02:00
|
|
|
__attribute__ ((section(".rodata"), unused))
|
|
|
|
const unsigned char first_crypto_asm_rodata = 0x10;
|
|
|
|
|
|
|
|
__attribute__ ((section(".text"), unused))
|
|
|
|
void first_crypto_asm_text(void){}
|
|
|
|
|
2022-11-27 22:21:47 +03:00
|
|
|
#ifdef CC_USE_CLANG
|
|
|
|
__attribute__ ((section(".init.text"), unused))
|
|
|
|
#else
|
2020-02-04 13:44:48 +02:00
|
|
|
__attribute__ ((section(".init.text"), optimize("-O0"), unused))
|
2022-11-27 22:21:47 +03:00
|
|
|
#endif
|
2020-02-04 13:44:48 +02:00
|
|
|
static void first_crypto_asm_init(void){};
|