too much information...
[unix-history] / usr / src / usr.bin / pascal / libpc / ROUND.c
CommitLineData
aa8e0d47
KM
1/* Copyright (c) 1979 Regents of the University of California */
2
492cc5d3 3static char sccsid[] = "@(#)ROUND.c 1.3 %G%";
aa8e0d47 4
492cc5d3 5long
aa8e0d47
KM
6ROUND(value)
7
8 double value;
9{
9a860fcb
KM
10 if (value >= 0.0)
11 return (long)(value + 0.5);
12 return (long)(value - 0.5);
aa8e0d47 13}