View | Details | Raw Unified | Return to bug 87681
Collapse All | Expand All

(-)gettimeofday.2 (-2 / +4 lines)
Lines 82-89 Link Here
82
.Pp
82
.Pp
83
.Bd -literal
83
.Bd -literal
84
struct timeval {
84
struct timeval {
85
	long	tv_sec;		/* seconds since Jan. 1, 1970 */
85
	long		tv_sec;		/* seconds since Jan. 1, 1970 */
86
	long	tv_usec;	/* and microseconds */
86
	suseconds_t	tv_usec;	/* and microseconds */
87
};
87
};
88
88
89
struct timezone {
89
struct timezone {
Lines 133-135 Link Here
133
.Fn gettimeofday
133
.Fn gettimeofday
134
system call appeared in
134
system call appeared in
135
.Bx 4.2 .
135
.Bx 4.2 .
136
.Sh BUGS
137
The tv_sec member of struct timeval should be a time_t.

Return to bug 87681