An ACS library for ZDoom-based ports
num min(num a, num b)
num - any numeric type (int or fixed)
Returns the lesser of two numbers.
min(3, 5) -> 3 min(5, 3) -> 3 min(8.0, 7.5) -> 7.5