shithub: duke3d

ref: 26658f1045a1e336a10039c0869eda27b34c6eb1
dir: /Game/src/audiolib/util.h/

View raw version
#ifndef AUDIOLIB__UTIL_H
#define AUDIOLIB__UTIL_H

#ifndef min
#define min(a, b)  ((a) < (b) ? (a) : (b))
#endif

#ifndef max
#define max(a, b)  ((a) > (b) ? (a) : (b))
#endif

#endif