Commit 3c666ce5 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

prevent warnings on re-defining MIN

parent a1287ec6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -193,6 +193,7 @@ static int readit(struct testcase *test, struct tftphdr **dpp,
  return b->counter;
}

#undef MIN /* some systems have this defined already, some don't */
#define MIN(x,y) ((x)<(y)?(x):(y));

/*