aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-02-01 01:41:31 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-02-01 01:41:31 +0100
commit99ac1759dd429bd7995feff33dc683589c016c8e (patch)
tree5041e213bb4c4653f6dac19ce059c48218df32f9 /include
parent97058d0585c29ed5fd57196f71642a419a53e546 (diff)
downloadbusybox-99ac1759dd429bd7995feff33dc683589c016c8e.tar.gz
lzop: code shrink
function old new delta lzo_decompress 526 524 -2 lzo_compress 473 470 -3 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r--include/liblzo_interface.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/liblzo_interface.h b/include/liblzo_interface.h
index b7f1b639b..1e194b944 100644
--- a/include/liblzo_interface.h
+++ b/include/liblzo_interface.h
@@ -49,12 +49,10 @@ int lzo1x_999_compress_level(const uint8_t* in, unsigned in_len,
/* decompression */
//int lzo1x_decompress(const uint8_t* src, unsigned src_len,
-// uint8_t* dst, unsigned* dst_len,
-// void* wrkmem /* NOT USED */);
+// uint8_t* dst, unsigned* dst_len /*, void* wrkmem */);
/* safe decompression with overrun testing */
int lzo1x_decompress_safe(const uint8_t* src, unsigned src_len,
- uint8_t* dst, unsigned* dst_len,
- void* wrkmem /* NOT USED */);
+ uint8_t* dst, unsigned* dst_len /*, void* wrkmem */);
#define LZO_E_OK 0
#define LZO_E_ERROR (-1)