less: small shrink
[oweals/busybox.git] / archival / bz / bzlib.h
index 805e9b3287f09be1f270819db52e3e6b0e76efec..1bb811c4a18a93a1e937c843045857779fa4f62e 100644 (file)
@@ -43,20 +43,22 @@ in the file LICENSE.
 #define BZ_CONFIG_ERROR      (-9)
 
 typedef struct bz_stream {
+       void *state;
        char *next_in;
        char *next_out;
        unsigned avail_in;
        unsigned avail_out;
        /*unsigned long long total_in;*/
        unsigned long long total_out;
-       void *state;
 } bz_stream;
 
 /*-- Core (low-level) library functions --*/
 
 static void BZ2_bzCompressInit(bz_stream *strm, int blockSize100k);
 static int BZ2_bzCompress(bz_stream *strm, int action);
-static int BZ2_bzCompressEnd(bz_stream *strm);
+#if ENABLE_FEATURE_CLEAN_UP
+static void BZ2_bzCompressEnd(bz_stream *strm);
+#endif
 
 /*-------------------------------------------------------------*/
 /*--- end                                           bzlib.h ---*/