1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

prevent warnings on re-defining MIN

This commit is contained in:
Daniel Stenberg 2005-09-16 07:19:54 +00:00
parent a1287ec64f
commit 3c666ce57a

View File

@ -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));
/*