diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/coff/i386.h | 1 | ||||
-rw-r--r-- | include/coff/x86_64.h | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 502fc47..c40136e 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2022-04-07 Mark Harmstone <mark@harmstone.com> + + * coff/i386.h: Define R_SECTION. + * coff/x86_64.h: Likewise. + 2022-04-01 John Baldwin <jhb@FreeBSD.org> * elf/common.h (NT_FREEBSD_X86_SEGBASES): Define. diff --git a/include/coff/i386.h b/include/coff/i386.h index ac6b159..d2f1328 100644 --- a/include/coff/i386.h +++ b/include/coff/i386.h @@ -95,6 +95,7 @@ struct external_reloc #define R_DIR32 6 #define R_IMAGEBASE 7 +#define R_SECTION 10 #define R_SECREL32 11 #define R_RELBYTE 15 #define R_RELWORD 16 diff --git a/include/coff/x86_64.h b/include/coff/x86_64.h index cddbda1..ef9f9bc 100644 --- a/include/coff/x86_64.h +++ b/include/coff/x86_64.h @@ -97,6 +97,7 @@ struct external_reloc #define R_DIR32 6 #define R_IMAGEBASE 7 +#define R_SECTION 10 #define R_SECREL32 11 #define R_RELBYTE 15 #define R_RELWORD 16 |