date and time created 80/10/31 14:45:07 by mckusick
[unix-history] / usr / src / usr.bin / pascal / libpc / ROUND.c
/* Copyright (c) 1979 Regents of the University of California */
static char sccsid[] = "@(#)ROUND.c 1.1 %G%";
ROUND(value)
double value;
{
return (long)(value + 0.5);
}