shithub: duke3d

ref: 841970e1ef524cb249a79f8bcce2545d714d8e5b
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