shithub: duke3d

ref: f0ad54afe62f6e2ae8e194bf81f9efc356b9ccd7
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