summaryrefslogtreecommitdiff
path: root/lib/libc/sys
diff options
context:
space:
mode:
authorAlexander Langer <alex@FreeBSD.org>1998-01-11 22:28:56 +0000
committerAlexander Langer <alex@FreeBSD.org>1998-01-11 22:28:56 +0000
commit73a8c56ec1c4369da69014bd2e5e04a3a884ee68 (patch)
tree8e9ca2d94a62379d6418ac823878af67b1a8b43d /lib/libc/sys
parentd4b1275d66d439a55c6a1d6194aaa08a7c162bf3 (diff)
Notes
Diffstat (limited to 'lib/libc/sys')
-rw-r--r--lib/libc/sys/gettimeofday.24
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/sys/gettimeofday.2 b/lib/libc/sys/gettimeofday.2
index 06ee8b1a995a..c3a5a211439a 100644
--- a/lib/libc/sys/gettimeofday.2
+++ b/lib/libc/sys/gettimeofday.2
@@ -30,6 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)gettimeofday.2 8.2 (Berkeley) 5/26/95
+.\" $Id$
.\"
.Dd May 26, 1995
.Dt GETTIMEOFDAY 2
@@ -49,6 +50,7 @@
Note: timezone is no longer used; this information is kept outside
the kernel.
.Ef
+.Pp
The system's notion of the current Greenwich time and the current time
zone is obtained with the
.Fn gettimeofday
@@ -74,7 +76,7 @@ as:
.Pp
.Bd -literal
struct timeval {
- long tv_sec; /* seconds */
+ long tv_sec; /* seconds since Jan. 1, 1970 */
long tv_usec; /* and microseconds */
};