about summary refs log tree commit diff stats
path: root/src/include/elfload_dump.h
diff options
context:
space:
mode:
authorYip Coekjan <69834864+Coekjan@users.noreply.github.com>2024-07-02 19:47:48 +0800
committerGitHub <noreply@github.com>2024-07-02 13:47:48 +0200
commit9cd8812d8b2b1648a40c05e02787c375d5ce5cd4 (patch)
treec9be3f2f7692387ec8e28d6eb5f0bfd0afb6a3ca /src/include/elfload_dump.h
parent4b0b3fc98ae4a1e848765e0cd48f958a13fc683d (diff)
downloadbox64-9cd8812d8b2b1648a40c05e02787c375d5ce5cd4.tar.gz
box64-9cd8812d8b2b1648a40c05e02787c375d5ce5cd4.zip
Handle `.relr.dyn` section (#1626)
Diffstat (limited to 'src/include/elfload_dump.h')
-rw-r--r--src/include/elfload_dump.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/elfload_dump.h b/src/include/elfload_dump.h
index ce0e9c1b..ad2ecd71 100644
--- a/src/include/elfload_dump.h
+++ b/src/include/elfload_dump.h
@@ -18,6 +18,7 @@ void DumpDynamicRPath(elfheader_t *h);
 void DumpDynSym(elfheader_t *h);
 void DumpRelTable(elfheader_t *h, int cnt, Elf64_Rel *rel, const char* name);
 void DumpRelATable(elfheader_t *h, int cnt, Elf64_Rela *rela, const char* name);
+void DumpRelRTable(elfheader_t *h, int cnt, Elf64_Relr *relr, const char *name);
 
 void DumpBinary(char* p, int sz);