blob: 20349f242f9f00b9941e0dc3ae9d6b48dfa0402d [file] [log] [blame]
#ifndef _RANGE_H
#define _RANGE_H
#ifndef typeof
#define typeof __typeof__
#endif
#ifndef MIN
#define MIN(a, b) \
({ \
typeof(a) _a = a; \
typeof(b) _b = b; \
_a < _b ? _a : _b; \
})
#endif
#ifndef MAX
#define MAX(a, b) \
({ \
typeof(a) _a = a; \
typeof(b) _b = b; \
_a > _b ? _a : _b; \
})
#endif
#endif