Runs on Linux.
This commit is contained in:
parent
58096449c6
commit
680473dd32
4 changed files with 11 additions and 3 deletions
|
@ -15,6 +15,14 @@
|
|||
#include "options.h"
|
||||
#include "udp.h"
|
||||
|
||||
/* min and max macros */
|
||||
#ifndef MIN
|
||||
#define MIN(x, y) ((x) < (y) ? x : y)
|
||||
#endif
|
||||
#ifndef MAX
|
||||
#define MAX(x, y) ((x) > (y) ? x : y)
|
||||
#endif
|
||||
|
||||
/*=========================================================================*\
|
||||
* Internal function prototypes
|
||||
\*=========================================================================*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue