diff options
author | Michael Brown <mcb30@ipxe.org> | 2017-12-29 11:57:00 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2017-12-29 11:57:00 +0000 |
commit | 00c5b958c59ec45736469fce674c5307cabbfd91 (patch) | |
tree | 2cc1562657dd2376d6911f2aa0af418cf793a1ec /src/arch/x86_64 | |
parent | ff648c339d25589a343a284286137058d19c17c2 (diff) | |
download | ipxe-00c5b958c59ec45736469fce674c5307cabbfd91.tar.gz |
[legal] Add missing FILE_LICENCE declarations
Add missing FILE_LICENCE declarations to x86_64 headers based on the
corresponding i386 headers (from which the x86_64 headers were
originally derived).
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch/x86_64')
-rw-r--r-- | src/arch/x86_64/include/bits/compiler.h | 2 | ||||
-rw-r--r-- | src/arch/x86_64/include/bits/stdint.h | 2 | ||||
-rw-r--r-- | src/arch/x86_64/include/limits.h | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/src/arch/x86_64/include/bits/compiler.h b/src/arch/x86_64/include/bits/compiler.h index 98c560e7d..46985da3e 100644 --- a/src/arch/x86_64/include/bits/compiler.h +++ b/src/arch/x86_64/include/bits/compiler.h @@ -1,6 +1,8 @@ #ifndef _BITS_COMPILER_H #define _BITS_COMPILER_H +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); + /** Dummy relocation type */ #define RELOC_TYPE_NONE R_X86_64_NONE diff --git a/src/arch/x86_64/include/bits/stdint.h b/src/arch/x86_64/include/bits/stdint.h index 9eb72e9c4..fe1f9946a 100644 --- a/src/arch/x86_64/include/bits/stdint.h +++ b/src/arch/x86_64/include/bits/stdint.h @@ -1,6 +1,8 @@ #ifndef _BITS_STDINT_H #define _BITS_STDINT_H +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); + typedef __SIZE_TYPE__ size_t; typedef signed long ssize_t; typedef signed long off_t; diff --git a/src/arch/x86_64/include/limits.h b/src/arch/x86_64/include/limits.h index 8cf87b471..a1374a17f 100644 --- a/src/arch/x86_64/include/limits.h +++ b/src/arch/x86_64/include/limits.h @@ -1,6 +1,8 @@ #ifndef LIMITS_H #define LIMITS_H 1 +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); + /* Number of bits in a `char' */ #define CHAR_BIT 8 |