mupen64plus-win32-deps/gawk-3.1.6-1/share/awk/cliff_rand.awk
Bobby Smiles 5b9ca0c278 Add gawk 3.1.6.
which is now needed to build mupen64plus-core.
2016-12-17 17:17:41 +01:00

14 lines
307 B
Awk

# cliff_rand.awk --- generate Cliff random numbers
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# December 2000
BEGIN { _cliff_seed = 0.1 }
function cliff_rand()
{
_cliff_seed = (100 * log(_cliff_seed)) % 1
if (_cliff_seed < 0)
_cliff_seed = - _cliff_seed
return _cliff_seed
}