History: round
double round( double x )
Replaces round() function - rounds a real number to the nearest integer.
Code
double round( double x )
{
	return floor(x+0.5);
}
Code.Tode.cz by Henry - 2014