diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2024-02-12 17:09:10 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2024-02-14 18:31:12 +0200 |
commit | 689e0228baeb95232430e90d628379db89583d71 (patch) | |
tree | 1ac08f6030261327d8bc231adf1ab3e16f623645 /src/liblzma/check | |
parent | Fix SHA-256 authors. (diff) | |
download | xz-689e0228baeb95232430e90d628379db89583d71.tar.xz |
Change most public domain parts to 0BSD.
Translations and doc/xz-file-format.txt and doc/lzma-file-format.txt
were not touched.
COPYING.0BSD was added.
Diffstat (limited to 'src/liblzma/check')
-rw-r--r-- | src/liblzma/check/Makefile.inc | 3 | ||||
-rw-r--r-- | src/liblzma/check/check.c | 3 | ||||
-rw-r--r-- | src/liblzma/check/check.h | 3 | ||||
-rw-r--r-- | src/liblzma/check/crc32_arm64.h | 3 | ||||
-rw-r--r-- | src/liblzma/check/crc32_fast.c | 3 | ||||
-rw-r--r-- | src/liblzma/check/crc32_small.c | 3 | ||||
-rw-r--r-- | src/liblzma/check/crc32_table.c | 3 | ||||
-rw-r--r-- | src/liblzma/check/crc32_tablegen.c | 3 | ||||
-rw-r--r-- | src/liblzma/check/crc32_x86.S | 3 | ||||
-rw-r--r-- | src/liblzma/check/crc64_fast.c | 3 | ||||
-rw-r--r-- | src/liblzma/check/crc64_small.c | 3 | ||||
-rw-r--r-- | src/liblzma/check/crc64_table.c | 3 | ||||
-rw-r--r-- | src/liblzma/check/crc64_tablegen.c | 3 | ||||
-rw-r--r-- | src/liblzma/check/crc64_x86.S | 3 | ||||
-rw-r--r-- | src/liblzma/check/crc_common.h | 3 | ||||
-rw-r--r-- | src/liblzma/check/crc_x86_clmul.h | 3 | ||||
-rw-r--r-- | src/liblzma/check/sha256.c | 3 |
17 files changed, 0 insertions, 51 deletions
diff --git a/src/liblzma/check/Makefile.inc b/src/liblzma/check/Makefile.inc index da7ee0db..c38b6e9b 100644 --- a/src/liblzma/check/Makefile.inc +++ b/src/liblzma/check/Makefile.inc @@ -1,9 +1,6 @@ ## ## Author: Lasse Collin ## -## This file has been put into the public domain. -## You can do whatever you want with this file. -## ## Note: There is no check for COND_CHECK_CRC32 because ## currently crc32 is always enabled. diff --git a/src/liblzma/check/check.c b/src/liblzma/check/check.c index 428ddaeb..dab4088d 100644 --- a/src/liblzma/check/check.c +++ b/src/liblzma/check/check.c @@ -5,9 +5,6 @@ // // Author: Lasse Collin // -// This file has been put into the public domain. -// You can do whatever you want with this file. -// /////////////////////////////////////////////////////////////////////////////// #include "check.h" diff --git a/src/liblzma/check/check.h b/src/liblzma/check/check.h index 8ae95d59..b8dcc075 100644 --- a/src/liblzma/check/check.h +++ b/src/liblzma/check/check.h @@ -5,9 +5,6 @@ // // Author: Lasse Collin // -// This file has been put into the public domain. -// You can do whatever you want with this file. -// /////////////////////////////////////////////////////////////////////////////// #ifndef LZMA_CHECK_H diff --git a/src/liblzma/check/crc32_arm64.h b/src/liblzma/check/crc32_arm64.h index fc24cd82..73b4f9f7 100644 --- a/src/liblzma/check/crc32_arm64.h +++ b/src/liblzma/check/crc32_arm64.h @@ -7,9 +7,6 @@ // Jia Tan // Hans Jansen // -// This file has been put into the public domain. -// You can do whatever you want with this file. -// /////////////////////////////////////////////////////////////////////////////// diff --git a/src/liblzma/check/crc32_fast.c b/src/liblzma/check/crc32_fast.c index 1fadb70f..068712b2 100644 --- a/src/liblzma/check/crc32_fast.c +++ b/src/liblzma/check/crc32_fast.c @@ -7,9 +7,6 @@ // Ilya Kurdyukov // Hans Jansen // -// This file has been put into the public domain. -// You can do whatever you want with this file. -// /////////////////////////////////////////////////////////////////////////////// #include "check.h" diff --git a/src/liblzma/check/crc32_small.c b/src/liblzma/check/crc32_small.c index 186966e9..e05e9062 100644 --- a/src/liblzma/check/crc32_small.c +++ b/src/liblzma/check/crc32_small.c @@ -5,9 +5,6 @@ // // Author: Lasse Collin // -// This file has been put into the public domain. -// You can do whatever you want with this file. -// /////////////////////////////////////////////////////////////////////////////// #include "check.h" diff --git a/src/liblzma/check/crc32_table.c b/src/liblzma/check/crc32_table.c index 09b00fa3..47fc3de5 100644 --- a/src/liblzma/check/crc32_table.c +++ b/src/liblzma/check/crc32_table.c @@ -5,9 +5,6 @@ // // Author: Lasse Collin // -// This file has been put into the public domain. -// You can do whatever you want with this file. -// /////////////////////////////////////////////////////////////////////////////// #include "common.h" diff --git a/src/liblzma/check/crc32_tablegen.c b/src/liblzma/check/crc32_tablegen.c index 31a4d275..341efdcd 100644 --- a/src/liblzma/check/crc32_tablegen.c +++ b/src/liblzma/check/crc32_tablegen.c @@ -9,9 +9,6 @@ // // Author: Lasse Collin // -// This file has been put into the public domain. -// You can do whatever you want with this file. -// /////////////////////////////////////////////////////////////////////////////// #include <stdio.h> diff --git a/src/liblzma/check/crc32_x86.S b/src/liblzma/check/crc32_x86.S index 4f395df8..babe8b92 100644 --- a/src/liblzma/check/crc32_x86.S +++ b/src/liblzma/check/crc32_x86.S @@ -11,9 +11,6 @@ * Authors: Igor Pavlov (original version) * Lasse Collin (AT&T syntax, PIC support, better portability) * - * This file has been put into the public domain. - * You can do whatever you want with this file. - * * This code needs lzma_crc32_table, which can be created using the * following C code: diff --git a/src/liblzma/check/crc64_fast.c b/src/liblzma/check/crc64_fast.c index 6a4e6d24..cd843b35 100644 --- a/src/liblzma/check/crc64_fast.c +++ b/src/liblzma/check/crc64_fast.c @@ -6,9 +6,6 @@ // Authors: Lasse Collin // Ilya Kurdyukov // -// This file has been put into the public domain. -// You can do whatever you want with this file. -// /////////////////////////////////////////////////////////////////////////////// #include "check.h" diff --git a/src/liblzma/check/crc64_small.c b/src/liblzma/check/crc64_small.c index 420f7cfb..4e113eef 100644 --- a/src/liblzma/check/crc64_small.c +++ b/src/liblzma/check/crc64_small.c @@ -5,9 +5,6 @@ // // Author: Lasse Collin // -// This file has been put into the public domain. -// You can do whatever you want with this file. -// /////////////////////////////////////////////////////////////////////////////// #include "check.h" diff --git a/src/liblzma/check/crc64_table.c b/src/liblzma/check/crc64_table.c index 806a9ce3..0bf07eff 100644 --- a/src/liblzma/check/crc64_table.c +++ b/src/liblzma/check/crc64_table.c @@ -5,9 +5,6 @@ // // Author: Lasse Collin // -// This file has been put into the public domain. -// You can do whatever you want with this file. -// /////////////////////////////////////////////////////////////////////////////// #include "common.h" diff --git a/src/liblzma/check/crc64_tablegen.c b/src/liblzma/check/crc64_tablegen.c index fddaa7ed..9975765d 100644 --- a/src/liblzma/check/crc64_tablegen.c +++ b/src/liblzma/check/crc64_tablegen.c @@ -8,9 +8,6 @@ // // Author: Lasse Collin // -// This file has been put into the public domain. -// You can do whatever you want with this file. -// /////////////////////////////////////////////////////////////////////////////// #include <stdio.h> diff --git a/src/liblzma/check/crc64_x86.S b/src/liblzma/check/crc64_x86.S index 9aecf586..6398081b 100644 --- a/src/liblzma/check/crc64_x86.S +++ b/src/liblzma/check/crc64_x86.S @@ -7,9 +7,6 @@ * Authors: Igor Pavlov (original CRC32 assembly code) * Lasse Collin (CRC64 adaptation of the modified CRC32 code) * - * This file has been put into the public domain. - * You can do whatever you want with this file. - * * This code needs lzma_crc64_table, which can be created using the * following C code: diff --git a/src/liblzma/check/crc_common.h b/src/liblzma/check/crc_common.h index 123d7db0..8da15123 100644 --- a/src/liblzma/check/crc_common.h +++ b/src/liblzma/check/crc_common.h @@ -8,9 +8,6 @@ // Hans Jansen // Jia Tan // -// This file has been put into the public domain. -// You can do whatever you want with this file. -// /////////////////////////////////////////////////////////////////////////////// #ifndef LZMA_CRC_COMMON_H diff --git a/src/liblzma/check/crc_x86_clmul.h b/src/liblzma/check/crc_x86_clmul.h index f407da5c..9455868b 100644 --- a/src/liblzma/check/crc_x86_clmul.h +++ b/src/liblzma/check/crc_x86_clmul.h @@ -27,9 +27,6 @@ // Lasse Collin // Jia Tan // -// This file has been put into the public domain. -// You can do whatever you want with this file. -// /////////////////////////////////////////////////////////////////////////////// // This file must not be included more than once. diff --git a/src/liblzma/check/sha256.c b/src/liblzma/check/sha256.c index 9247fa32..07cd3372 100644 --- a/src/liblzma/check/sha256.c +++ b/src/liblzma/check/sha256.c @@ -10,9 +10,6 @@ // Authors: Wei Dai // Lasse Collin // -// This file has been put into the public domain. -// You can do whatever you want with this file. -// /////////////////////////////////////////////////////////////////////////////// #include "check.h" |