mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-22 12:01:26 +00:00
9 lines
130 B
C++
9 lines
130 B
C++
#ifndef MATH_qh
|
|
#define MATH_qh 1
|
|
|
|
@extern {
|
|
#define min(a, b) ((a)>(b)?(b):(a))
|
|
#define max(a, b) ((a)>(b)?(a):(b))
|
|
};
|
|
|
|
#endif
|