Add conditional definition for MIN macro needed in last commit
This commit is contained in:
parent
fc5281e2a1
commit
5f2a181599
2
configs
2
configs
@ -1 +1 @@
|
||||
Subproject commit 011c54d78c920cd7bd0872638983444436e749dc
|
||||
Subproject commit ef0ed726cc999572b60228cc8a4f482f53e6a228
|
@ -71,6 +71,14 @@
|
||||
# define CONFIG_NET_HOSTNAME ""
|
||||
#endif
|
||||
|
||||
#ifndef MIN
|
||||
# define MIN(a,b) ((a) < (b) ? (a) : (b))
|
||||
#endif
|
||||
|
||||
#ifndef MAX
|
||||
# define MAX(a,b) ((a) > (b) ? (a) : (b))
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Private Data
|
||||
****************************************************************************/
|
||||
|
Loading…
Reference in New Issue
Block a user