Renamed trees_p.h to trees.h.

This commit is contained in:
Nathan Moinvaziri 2020-08-25 19:46:15 -07:00 committed by Hans Kristian Rosbach
parent 4490d52d0a
commit 899f0720ec
5 changed files with 7 additions and 7 deletions

View File

@ -835,9 +835,9 @@ set(ZLIB_PRIVATE_HDRS
inftrees.h inftrees.h
insert_string_tpl.h insert_string_tpl.h
match_tpl.h match_tpl.h
trees_tbl.h trees.h
trees_emit.h trees_emit.h
trees_p.h trees_tbl.h
zbuild.h zbuild.h
zendian.h zendian.h
zutil.h zutil.h

View File

@ -6,7 +6,7 @@
#include <stdio.h> #include <stdio.h>
#include "zbuild.h" #include "zbuild.h"
#include "deflate.h" #include "deflate.h"
#include "trees_p.h" #include "trees.h"
static ct_data static_ltree[L_CODES+2]; static ct_data static_ltree[L_CODES+2];
/* The static literal tree. Since the bit lengths are imposed, there is no /* The static literal tree. Since the bit lengths are imposed, there is no

View File

@ -32,7 +32,7 @@
#include "zbuild.h" #include "zbuild.h"
#include "deflate.h" #include "deflate.h"
#include "trees_p.h" #include "trees.h"
#include "trees_emit.h" #include "trees_emit.h"
#include "trees_tbl.h" #include "trees_tbl.h"

View File

@ -1,5 +1,5 @@
#ifndef TREES_P_H_ #ifndef TREES_H_
#define TREES_P_H_ #define TREES_H_
/* Constants */ /* Constants */

View File

@ -2,7 +2,7 @@
#define TREES_EMIT_H_ #define TREES_EMIT_H_
#include "zbuild.h" #include "zbuild.h"
#include "trees_p.h" #include "trees.h"
#ifdef ZLIB_DEBUG #ifdef ZLIB_DEBUG
# include <ctype.h> # include <ctype.h>