shithub: duke3d

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