diff options
author | Vincent Labrecque <vincent@cvs.openbsd.org> | 2002-05-22 03:44:22 +0000 |
---|---|---|
committer | Vincent Labrecque <vincent@cvs.openbsd.org> | 2002-05-22 03:44:22 +0000 |
commit | ce92879e3ca612b26b1bd0051d26a3ffd2d4a82a (patch) | |
tree | b4530ab831fc1e86c1c3c1a7e1d16230e89d5987 /lib/libc/gen | |
parent | 3f5825725d980e3ca849b81920e51385c78b25f7 (diff) |
put a real struct definition instead of the weird "typedef struct
{};" thing
ok millert
Diffstat (limited to 'lib/libc/gen')
-rw-r--r-- | lib/libc/gen/times.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/times.3 b/lib/libc/gen/times.3 index 934ffc351bd..0bf7cbf974f 100644 --- a/lib/libc/gen/times.3 +++ b/lib/libc/gen/times.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: times.3,v 1.8 2000/12/24 00:30:52 aaron Exp $ +.\" $OpenBSD: times.3,v 1.9 2002/05/22 03:44:21 vincent Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -65,7 +65,7 @@ The .Li tms structure is defined as follows: .Bd -literal -offset indent -typedef struct { +struct tms { clock_t tms_utime; clock_t tms_stime; clock_t tms_cutime; |