aboutsummaryrefslogtreecommitdiff
path: root/sys/sys
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2023-11-01 15:05:58 +0000
committerAndrew Turner <andrew@FreeBSD.org>2024-02-19 12:43:42 +0000
commita2061845faf0711fd2437b7123acaa27d338cb3e (patch)
tree40c3969c5b637ae01d4480b41624fca50317ee70 /sys/sys
parentadb7f221a25e466371e6b098dc6dd72b8f28f2c1 (diff)
downloadsrc-a2061845faf0711fd2437b7123acaa27d338cb3e.tar.gz
src-a2061845faf0711fd2437b7123acaa27d338cb3e.zip
imgact_elf: Move GNU_ABI_VENDOR to a common header
Move the definition of GNU_ABI_VENDOR to a common location so it can be used in multiple files. Reviewed by: emaste, kib, imp Sponsored by: Arm Ltd Differential Revision: https://reviews.freebsd.org/D42442 (cherry picked from commit 9d2612fc2a7e54719058c68b62ea035b029c954f)
Diffstat (limited to 'sys/sys')
-rw-r--r--sys/sys/imgact_elf.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/sys/imgact_elf.h b/sys/sys/imgact_elf.h
index 349161a66c48..b0cb6f9fcce7 100644
--- a/sys/sys/imgact_elf.h
+++ b/sys/sys/imgact_elf.h
@@ -101,6 +101,7 @@ __ElfType(Brandinfo);
#define MAX_BRANDS 8
#define FREEBSD_ABI_VENDOR "FreeBSD"
+#define GNU_ABI_VENDOR "GNU"
typedef void (*outfunc_t)(void *, struct sbuf *, size_t *);