removed macro CLAMP from decodecorpus

never used,
and would duplicate with CLAMP from zstd_compress.c
This commit is contained in:
Yann Collet 2017-06-16 18:16:27 -07:00
parent 01743a36e7
commit bd05b19713

View File

@ -73,8 +73,6 @@ static clock_t clockSpan(clock_t cStart)
/*-*******************************************************
* Random function
*********************************************************/
#define CLAMP(x, a, b) ((x) < (a) ? (a) : ((x) > (b) ? (b) : (x)))
static unsigned RAND(unsigned* src)
{
#define RAND_rotl32(x,r) ((x << r) | (x >> (32 - r)))