]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Renamed trees_p.h to trees.h.
authorNathan Moinvaziri <nathan@solidstatenetworks.com>
Wed, 26 Aug 2020 02:46:15 +0000 (19:46 -0700)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Thu, 27 Aug 2020 17:19:30 +0000 (19:19 +0200)
CMakeLists.txt
tools/maketrees.c
trees.c
trees.h [moved from trees_p.h with 97% similarity]
trees_emit.h

index dd2bccb6c8e780f07380021418e53d8f75b20ecf..5a58e7fc289ffa95cf004ca6e7fc0c53376e82a7 100644 (file)
@@ -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
index c60cc130ab5faed20f189354a820092831b9e363..00b7c833d1b93502d558e359635070fcae68d8c5 100644 (file)
@@ -6,7 +6,7 @@
 #include <stdio.h>
 #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 f02853a0792fcd0b5c771a9a7e6202fb38a8bf77..47734f30827f4ded7f18a62580de05f9f9982c8c 100644 (file)
--- 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"
 
similarity index 97%
rename from trees_p.h
rename to trees.h
index 13c0b16a16ab6f11f522370596e9b2ef1816f6ae..e57f926489f4ff13f87b8ed187c1ebe59be62f0b 100644 (file)
--- 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 */
 
index dfce22bfc046f2d97563b8a385ab2685172e9228..452fad6c71bf3d499413eb5bea70a30220ea9dba 100644 (file)
@@ -2,7 +2,7 @@
 #define TREES_EMIT_H_
 
 #include "zbuild.h"
-#include "trees_p.h"
+#include "trees.h"
 
 #ifdef ZLIB_DEBUG
 #  include <ctype.h>