BSD 4_3 release
[unix-history] / usr / src / usr.lib / libF77 / h_dnnt.c
CommitLineData
b57672b9 1/*
6bb465b0
RE
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
95f51977 6 * @(#)h_dnnt.c 5.1 6/7/85
b57672b9
DW
7 */
8
9short h_dnnt(x)
10double *x;
11{
12double floor();
13
14return( (*x)>=0 ?
15 floor(*x + .5) : -floor(.5 - *x) );
16}