diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2023-10-20 23:25:14 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2024-01-10 17:19:03 +0200 |
commit | 93d144f0930821590524247bd174afd38003d7f0 (patch) | |
tree | 249326c8116d389fcb0bfdfff5439c91720c76e0 | |
parent | liblzma: crc_clmul.c: Tidy up the location of MSVC pragma. (diff) | |
download | xz-93d144f0930821590524247bd174afd38003d7f0.tar.xz |
liblzma: CRC: Add empty lines.
And remove one too.
-rw-r--r-- | src/liblzma/check/crc32_fast.c | 2 | ||||
-rw-r--r-- | src/liblzma/check/crc64_fast.c | 3 | ||||
-rw-r--r-- | src/liblzma/check/crc_clmul.c | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/src/liblzma/check/crc32_fast.c b/src/liblzma/check/crc32_fast.c index 73659049..9fce94d3 100644 --- a/src/liblzma/check/crc32_fast.c +++ b/src/liblzma/check/crc32_fast.c @@ -15,6 +15,7 @@ #include "check.h" #include "crc_common.h" + #ifdef CRC_GENERIC /////////////////// @@ -80,6 +81,7 @@ crc32_generic(const uint8_t *buf, size_t size, uint32_t crc) } #endif + #if defined(CRC_GENERIC) && defined(CRC_CLMUL) ////////////////////////// diff --git a/src/liblzma/check/crc64_fast.c b/src/liblzma/check/crc64_fast.c index 4e6633db..ce74901c 100644 --- a/src/liblzma/check/crc64_fast.c +++ b/src/liblzma/check/crc64_fast.c @@ -14,6 +14,7 @@ #include "check.h" #include "crc_common.h" + #ifdef CRC_GENERIC ///////////////////////////////// @@ -75,7 +76,9 @@ crc64_generic(const uint8_t *buf, size_t size, uint64_t crc) } #endif + #if defined(CRC_GENERIC) && defined(CRC_CLMUL) + ////////////////////////// // Function dispatching // ////////////////////////// diff --git a/src/liblzma/check/crc_clmul.c b/src/liblzma/check/crc_clmul.c index 0c2bdab1..8db82940 100644 --- a/src/liblzma/check/crc_clmul.c +++ b/src/liblzma/check/crc_clmul.c @@ -22,7 +22,6 @@ // Lasse Collin // Jia Tan // -// // This file has been put into the public domain. // You can do whatever you want with this file. // |