fix(esp_system): fix potential warnings related to array size in .eh_frame parser

This commit is contained in:
Omar Chebib
2025-09-16 14:41:22 +08:00
parent 65d6decd37
commit 20c7ccd6e4

View File

@@ -251,8 +251,8 @@ typedef struct {
* @brief Symbols defined by the linker.
* Retrieve the addresses of both .eh_frame_hdr and .eh_frame sections.
*/
extern char __eh_frame_hdr;
extern char __eh_frame;
extern uint8_t __eh_frame_hdr[];
extern uint8_t __eh_frame[];
/**
* @brief Decode multiple bytes encoded in LEB128.