BSD 4 release
[unix-history] / usr / src / lib / libpc / TRUNC.c
... / ...
CommitLineData
1/* Copyright (c) 1979 Regents of the University of California */
2
3static char sccsid[] = "@(#)TRUNC.c 1.1 10/29/80";
4
5TRUNC(value)
6
7 double value;
8{
9 return (long)(value);
10}