diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-31 18:16:34 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-31 18:16:34 +0100 |
commit | a142926029e468ece87892e8364fe4458b12f128 (patch) | |
tree | 2cfd6f5e888003b0a51b445daac49c63145eda2b | |
parent | 919bc9d43c47a206e632c1b4c80c5f23e307b176 (diff) | |
download | busybox-w32-a142926029e468ece87892e8364fe4458b12f128.tar.gz busybox-w32-a142926029e468ece87892e8364fe4458b12f128.tar.bz2 busybox-w32-a142926029e468ece87892e8364fe4458b12f128.zip |
gzip: remove unnecessary forward declarations, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | archival/gzip.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/archival/gzip.c b/archival/gzip.c index 92130e7fb..6241b782a 100644 --- a/archival/gzip.c +++ b/archival/gzip.c | |||
@@ -1081,15 +1081,6 @@ struct globals2 { | |||
1081 | 1081 | ||
1082 | /* =========================================================================== | 1082 | /* =========================================================================== |
1083 | */ | 1083 | */ |
1084 | static void gen_codes(ct_data * tree, int max_code); | ||
1085 | static void build_tree(tree_desc * desc); | ||
1086 | static void scan_tree(ct_data * tree, int max_code); | ||
1087 | static void send_tree(ct_data * tree, int max_code); | ||
1088 | static int build_bl_tree(void); | ||
1089 | static void send_all_trees(int lcodes, int dcodes, int blcodes); | ||
1090 | static void compress_block(ct_data * ltree, ct_data * dtree); | ||
1091 | |||
1092 | |||
1093 | #ifndef DEBUG | 1084 | #ifndef DEBUG |
1094 | /* Send a code of the given tree. c and tree must not have side effects */ | 1085 | /* Send a code of the given tree. c and tree must not have side effects */ |
1095 | # define SEND_CODE(c, tree) send_bits(tree[c].Code, tree[c].Len) | 1086 | # define SEND_CODE(c, tree) send_bits(tree[c].Code, tree[c].Len) |