DATE is set by %G%, not %I%; just a bug.
[unix-history] / usr / src / usr.bin / pascal / libpc / TRUNC.c
/* Copyright (c) 1979 Regents of the University of California */
static char sccsid[] = "@(#)TRUNC.c 1.2 %G%";
long
TRUNC(value)
double value;
{
return (long)(value);
}