summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libelfu/types.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/libelfu/types.h b/include/libelfu/types.h
index 46fbc69..37e25fa 100644
--- a/include/libelfu/types.h
+++ b/include/libelfu/types.h
@@ -8,7 +8,8 @@
typedef struct ElfuSym {
- char *name;
+ GElf_Word name;
+ char *nameptr;
GElf_Addr value;
GElf_Word size;
@@ -92,6 +93,8 @@ typedef struct {
CIRCLEQ_HEAD(OrphanScnList, ElfuScn) orphanScnList;
ElfuScn *shstrtab;
+
+ ElfuScn *symtab;
} ElfuElf;
#endif