xref: /original-bsd/usr.bin/pascal/libpc/ROUND.c (revision e21485a6)
1 /*-
2  * Copyright (c) 1979 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)ROUND.c	1.4 (Berkeley) 04/09/90";
10 #endif /* not lint */
11 
12 long
13 ROUND(value)
14 
15 	double	value;
16 {
17 	if (value >= 0.0)
18 		return (long)(value + 0.5);
19 	return (long)(value - 0.5);
20 }
21