diff options
Diffstat (limited to '')
-rw-r--r-- | mld/link.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -170,6 +170,8 @@ struct segment_table_entry { uint32_t vaddr; // weak segment pointers. we do not own these!!! struct segment **parts; + // section padding + uint32_t padding; }; int segtab_ent_init(struct segment_table_entry *ent); @@ -273,9 +275,6 @@ struct linker { uint32_t strtab_shidx; uint32_t shstrtab_shidx; - // section alignment after phdr bytes - uint32_t secalign; - // all segments struct segment_table segments; }; |