mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-10 06:31:52 +00:00
15 lines
199 B
C++
15 lines
199 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
|