iwyu: transform_lzo.c

This commit is contained in:
Hamish Coleman 2023-06-16 09:42:18 +01:00
parent 8b6fcb8ab6
commit 89cb9419c7

View File

@ -17,7 +17,12 @@
*/ */
#include "n2n.h" #include <stdint.h> // for uint8_t
#include <stdlib.h> // for size_t, calloc, free, NULL
#include <string.h> // for memset
#include <sys/types.h> // for time_t
#include "minilzo.h" // for lzo1x_1_compress, lzo1x_decompress, LZO1X_1_M...
#include "n2n.h" // for n2n_trans_op_t, TRACE_ERROR, traceEvent, N2N_...
/* heap allocation for compression as per lzo example doc */ /* heap allocation for compression as per lzo example doc */