Introduce shared/defines.h to collect commonly used macros. For now
it defines min() / max() macros.
This commit is contained in:
@@ -24,9 +24,6 @@
|
||||
# define false 0
|
||||
#endif
|
||||
|
||||
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
||||
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
||||
|
||||
#include "shared/LL.h"
|
||||
|
||||
/** A Menu is a MenuItem too.
|
||||
|
||||
Reference in New Issue
Block a user