liblzma: Rename crc_macros.h to crc_common.h.

This commit is contained in:
Hans Jansen 2023-10-12 19:07:50 +02:00 committed by Jia Tan
parent 37947d4a75
commit 233885a437
5 changed files with 5 additions and 5 deletions

View File

@ -217,7 +217,7 @@ add_library(liblzma
src/liblzma/api/lzma/vli.h
src/liblzma/check/check.c
src/liblzma/check/check.h
src/liblzma/check/crc_macros.h
src/liblzma/check/crc_common.h
src/liblzma/common/block_util.c
src/liblzma/common/common.c
src/liblzma/common/common.h

View File

@ -12,7 +12,7 @@ EXTRA_DIST += \
liblzma_la_SOURCES += \
check/check.c \
check/check.h \
check/crc_macros.h
check/crc_common.h
if COND_CHECK_CRC32
if COND_SMALL

View File

@ -17,7 +17,7 @@
///////////////////////////////////////////////////////////////////////////////
#include "check.h"
#include "crc_macros.h"
#include "crc_common.h"
// If you make any changes, do some benchmarking! Seemingly unrelated

View File

@ -77,7 +77,7 @@
#ifdef CRC_GENERIC
#include "crc_macros.h"
#include "crc_common.h"
#ifdef WORDS_BIGENDIAN

View File

@ -1,6 +1,6 @@
///////////////////////////////////////////////////////////////////////////////
//
/// \file crc_macros.h
/// \file crc_common.h
/// \brief Some endian-dependent macros for CRC32 and CRC64
//
// Author: Lasse Collin