aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2024-02-22 16:30:59 +0000
committerWarner Losh <imp@FreeBSD.org>2024-02-22 16:31:57 +0000
commit27c0f2a544989760c4b3b16a3615839c8ab44b32 (patch)
tree3ec9967bccd0393702588ec66ab55cbc120faed5
parent3e15b01d6914c927e37d1699645783acf286655c (diff)
downloadsrc-27c0f2a544989760c4b3b16a3615839c8ab44b32.tar.gz
src-27c0f2a544989760c4b3b16a3615839c8ab44b32.zip
loader: These files have no copyrightable material
These files have no copyrightable material, and so are in the public domain. Sponsored by: Netflix
-rw-r--r--stand/common/load_elf32.c2
-rw-r--r--stand/common/load_elf32_obj.c2
-rw-r--r--stand/common/load_elf64.c2
-rw-r--r--stand/common/load_elf64_obj.c2
4 files changed, 8 insertions, 0 deletions
diff --git a/stand/common/load_elf32.c b/stand/common/load_elf32.c
index 4737670d2eeb..4ecdeb773228 100644
--- a/stand/common/load_elf32.c
+++ b/stand/common/load_elf32.c
@@ -1,3 +1,5 @@
+/* This file is in the public domain */
+
#define __ELF_WORD_SIZE 32
#define _MACHINE_ELF_WANT_32BIT
#include "load_elf.c"
diff --git a/stand/common/load_elf32_obj.c b/stand/common/load_elf32_obj.c
index e37b4dfddb49..d0278930f5e4 100644
--- a/stand/common/load_elf32_obj.c
+++ b/stand/common/load_elf32_obj.c
@@ -1,3 +1,5 @@
+/* This file is in the public domain */
+
#define __ELF_WORD_SIZE 32
#define _MACHINE_ELF_WANT_32BIT
#include "load_elf_obj.c"
diff --git a/stand/common/load_elf64.c b/stand/common/load_elf64.c
index 98ef7dc40985..d55f139d1e6a 100644
--- a/stand/common/load_elf64.c
+++ b/stand/common/load_elf64.c
@@ -1,2 +1,4 @@
+/* This file is in the public domain */
+
#define __ELF_WORD_SIZE 64
#include "load_elf.c"
diff --git a/stand/common/load_elf64_obj.c b/stand/common/load_elf64_obj.c
index 43de8cc1214f..0f01258fa372 100644
--- a/stand/common/load_elf64_obj.c
+++ b/stand/common/load_elf64_obj.c
@@ -1,2 +1,4 @@
+/* This file is in the public domain */
+
#define __ELF_WORD_SIZE 64
#include "load_elf_obj.c"