1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-02-01 17:00:36 +00:00

Remove comment relevant to 16bit integers only.

This commit is contained in:
Warner Losh 1998-07-26 16:49:20 +00:00
parent a65adfc05c
commit fa43bfe289
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=37871

View File

@ -57,8 +57,6 @@ int *d,*t;
time(&tvec);
tptr=localtime(&tvec);
*d=tptr->tm_yday+365*(tptr->tm_year-77); /* day since 1977 (mod leap) */
/* bug: this will overflow in the year 2066 AD */
/* it will be attributed to Wm the C's millenial celebration */
*t=tptr->tm_hour*60+tptr->tm_min; /* and minutes since midnite */
} /* pretty painless */