git: 27c0f2a54498 - main - loader: These files have no copyrightable material

From: Warner Losh <imp_at_FreeBSD.org>
Date: Thu, 22 Feb 2024 16:32:18 UTC
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=27c0f2a544989760c4b3b16a3615839c8ab44b32

commit 27c0f2a544989760c4b3b16a3615839c8ab44b32
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2024-02-22 16:30:59 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2024-02-22 16:31:57 +0000

    loader: These files have no copyrightable material
    
    These files have no copyrightable material, and so are in the public
    domain.
    
    Sponsored by:           Netflix
---
 stand/common/load_elf32.c     | 2 ++
 stand/common/load_elf32_obj.c | 2 ++
 stand/common/load_elf64.c     | 2 ++
 stand/common/load_elf64_obj.c | 2 ++
 4 files changed, 8 insertions(+)

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"