1
0
Fork 0
qemu/roms/skiboot/libmctp/range.h
Daniel Baumann ea34ddeea6
Adding upstream version 1:10.0.2+ds.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 14:27:05 +02:00

26 lines
851 B
C

#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