shithub: duke3d

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