From 899f0720ec732e74741f8cbe76bfc3bd7a264cf7 Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Tue, 25 Aug 2020 19:46:15 -0700 Subject: [PATCH] Renamed trees_p.h to trees.h. --- CMakeLists.txt | 4 ++-- tools/maketrees.c | 2 +- trees.c | 2 +- trees_p.h => trees.h | 4 ++-- trees_emit.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) rename trees_p.h => trees.h (97%) diff --git a/CMakeLists.txt b/CMakeLists.txt index dd2bccb6..5a58e7fc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -835,9 +835,9 @@ set(ZLIB_PRIVATE_HDRS inftrees.h insert_string_tpl.h match_tpl.h - trees_tbl.h + trees.h trees_emit.h - trees_p.h + trees_tbl.h zbuild.h zendian.h zutil.h diff --git a/tools/maketrees.c b/tools/maketrees.c index c60cc130..00b7c833 100644 --- a/tools/maketrees.c +++ b/tools/maketrees.c @@ -6,7 +6,7 @@ #include #include "zbuild.h" #include "deflate.h" -#include "trees_p.h" +#include "trees.h" static ct_data static_ltree[L_CODES+2]; /* The static literal tree. Since the bit lengths are imposed, there is no diff --git a/trees.c b/trees.c index f02853a0..47734f30 100644 --- a/trees.c +++ b/trees.c @@ -32,7 +32,7 @@ #include "zbuild.h" #include "deflate.h" -#include "trees_p.h" +#include "trees.h" #include "trees_emit.h" #include "trees_tbl.h" diff --git a/trees_p.h b/trees.h similarity index 97% rename from trees_p.h rename to trees.h index 13c0b16a..e57f9264 100644 --- a/trees_p.h +++ b/trees.h @@ -1,5 +1,5 @@ -#ifndef TREES_P_H_ -#define TREES_P_H_ +#ifndef TREES_H_ +#define TREES_H_ /* Constants */ diff --git a/trees_emit.h b/trees_emit.h index dfce22bf..452fad6c 100644 --- a/trees_emit.h +++ b/trees_emit.h @@ -2,7 +2,7 @@ #define TREES_EMIT_H_ #include "zbuild.h" -#include "trees_p.h" +#include "trees.h" #ifdef ZLIB_DEBUG # include