mirror of
https://git.code.sf.net/p/quake/game-source
synced 2025-02-17 01:11:10 +00:00
14 lines
199 B
C++
14 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
|