]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/gamec/miscfunctions.c
more elegant checking to see if stuffcmds are safe
[divverent/nexuiz.git] / data / qcsrc / gamec / miscfunctions.c
1 float math_mod(float a, float b)
2 {
3         return a - (floor(a / b) * b);
4 }
5