X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=crypto%2Fcomp%2Fc_rle.c;h=efd366fa2239aa08594f50c3d3fe4a266164be55;hb=0e4aa0d2d2807e0cbeac29b65d2b9061daed8941;hp=32fa05fa9ae984383a3c3f6b6a4049d4f79181ee;hpb=6b691a5c85ddc4e407e32781841fee5c029506cd;p=oweals%2Fopenssl.git diff --git a/crypto/comp/c_rle.c b/crypto/comp/c_rle.c index 32fa05fa9a..efd366fa22 100644 --- a/crypto/comp/c_rle.c +++ b/crypto/comp/c_rle.c @@ -1,8 +1,8 @@ #include #include #include -#include "objects.h" -#include "comp.h" +#include +#include static int rle_compress_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen); @@ -17,6 +17,7 @@ static COMP_METHOD rle_method={ rle_compress_block, rle_expand_block, NULL, + NULL, }; COMP_METHOD *COMP_rle(void)