Replace list based free/busy/requeue list with FIFO + ring
[fio.git] / minmax.h
1 #ifndef FIO_MIN_MAX_H
2 #define FIO_MIN_MAX_H
3
4 #ifndef min
5 #define min(a, b)       ((a) < (b) ? (a) : (b))
6 #endif
7 #ifndef max
8 #define max(a, b)       ((a) > (b) ? (a) : (b))
9 #endif
10
11 #endif