initialization of the "process" variable, this really should be
[unix-history] / usr / src / usr.bin / pascal / libpc / TRUNC.c
CommitLineData
72596485
KM
1/* Copyright (c) 1979 Regents of the University of California */
2
492cc5d3 3static char sccsid[] = "@(#)TRUNC.c 1.2 %G%";
72596485 4
492cc5d3 5long
72596485
KM
6TRUNC(value)
7
8 double value;
9{
10 return (long)(value);
11}