Sync with actual code.

PR:		docs/87681
Noticed by:	Andreas Kohn <andreas@syndrom23.de>
Reviewed by:	brooks
Approved by:	trhodes (mentor)
MFC after:	3 days
This commit is contained in:
Jesus R. Camou 2006-03-03 13:58:43 +00:00
parent f051cb85e8
commit 68dac191af

View File

@ -82,8 +82,12 @@ as:
.Pp
.Bd -literal
struct timeval {
long tv_sec; /* seconds since Jan. 1, 1970 */
long tv_usec; /* and microseconds */
#ifdef __alpha__
long tv_sec; /* seconds */
#else
time_t tv_sec; /* seconds */
#endif
suseconds_t tv_usec; /* and microseconds */
};
struct timezone {