1 2 3 4 5 6
#ifndef LSTD_MATH_H #define LSTD_MATH_H #define MAX(a, b) (a > b ? a : b) #endif // LSTD_MATH_H