diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-08 13:05:39 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-08 13:05:39 +0000 |
commit | c14d39e83a7f55ab9b92e98673a281fd6565c32d (patch) | |
tree | f1cfe7f071b228cf7f1a732046cabf18fa9421b8 /docs/keep_data_small.txt | |
parent | def8260219797b0f9f734915f4918f34e85e7049 (diff) | |
download | busybox-w32-c14d39e83a7f55ab9b92e98673a281fd6565c32d.tar.gz busybox-w32-c14d39e83a7f55ab9b92e98673a281fd6565c32d.tar.bz2 busybox-w32-c14d39e83a7f55ab9b92e98673a281fd6565c32d.zip |
rmp: add optional support for bz2 data. +50 bytes of code
Diffstat (limited to 'docs/keep_data_small.txt')
-rw-r--r-- | docs/keep_data_small.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/keep_data_small.txt b/docs/keep_data_small.txt index 55f4fc95a..f88fe07b0 100644 --- a/docs/keep_data_small.txt +++ b/docs/keep_data_small.txt | |||
@@ -65,7 +65,7 @@ archival/libunarchive/decompress_unzip.c: | |||
65 | (see the rest of the file to get the idea) | 65 | (see the rest of the file to get the idea) |
66 | 66 | ||
67 | This example completely eliminates globals in that module. | 67 | This example completely eliminates globals in that module. |
68 | Required memory is allocated in inflate_gunzip() [its main module] | 68 | Required memory is allocated in unpack_gz_stream() [its main module] |
69 | and then passed down to all subroutines which need to access 'globals' | 69 | and then passed down to all subroutines which need to access 'globals' |
70 | as a parameter. | 70 | as a parameter. |
71 | 71 | ||