Skip to content

Commit

Permalink
Renamed trees_p.h to trees.h.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmoinvaz authored and Dead2 committed Aug 27, 2020
1 parent 4490d52 commit 899f072
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tools/maketrees.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion trees.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions trees_p.h → trees.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef TREES_P_H_
#define TREES_P_H_
#ifndef TREES_H_
#define TREES_H_

/* Constants */

Expand Down
2 changes: 1 addition & 1 deletion trees_emit.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define TREES_EMIT_H_

#include "zbuild.h"
#include "trees_p.h"
#include "trees.h"

#ifdef ZLIB_DEBUG
# include <ctype.h>
Expand Down

0 comments on commit 899f072

Please sign in to comment.