mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-29 07:02:29 +00:00
12 lines
203 B
C++
12 lines
203 B
C++
#ifndef MATH_qh
|
|
#define MATH_qh 1
|
|
|
|
@extern {
|
|
float (float num, float bits) shl;
|
|
float (float num, float bits) shr;
|
|
|
|
#define min(a, b) ((a)>(b)?(b):(a))
|
|
#define max(a, b) ((a)>(b)?(a):(b))
|
|
};
|
|
|
|
#endif
|