mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-06 22:20:42 +00:00
12 lines
184 B
C
Executable file
12 lines
184 B
C
Executable file
#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
|