File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 116116#include "lz4.h"
117117/* see also "memory routines" below */
118118
119+ #include <compiler.h>
120+
119121
120122/*-************************************
121123* Compiler Options
Original file line number Diff line number Diff line change 4949# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */
5050#endif
5151
52+ #include <compiler.h>
53+
5254
5355/*-************************************
5456* Tuning parameters
@@ -344,7 +346,9 @@ size_t LZ4F_getBlockSize(LZ4F_blockSizeID_t blockSizeID)
344346/*-************************************
345347* Private functions
346348**************************************/
349+ #ifndef MIN
347350#define MIN (a ,b ) ( (a) < (b) ? (a) : (b) )
351+ #endif
348352
349353static BYTE LZ4F_headerChecksum (const void * header , size_t length )
350354{
Original file line number Diff line number Diff line change 5454#include "lz4hc.h"
5555#include <limits.h>
5656
57+ #include <compiler.h>
58+
5759
5860/*=== Shared lz4.c code ===*/
5961#ifndef LZ4_SRC_INCLUDED
You can’t perform that action at this time.
0 commit comments