Introduce shared/defines.h to collect commonly used macros. For now
it defines min() / max() macros.
This commit is contained in:
@@ -35,9 +35,6 @@
|
||||
# define false 0
|
||||
#endif
|
||||
|
||||
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
||||
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
||||
|
||||
/*********************************************************************
|
||||
* Data definitions of the menustuff
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user