diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-05-29 14:54:10 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-05-29 14:54:10 +0000 |
commit | 2919478c2fee7a61c1d1790ac42fbe9ef7728064 (patch) | |
tree | a942b2461156885cb4b2e9d616f39171b3e0ff78 /lib/libc/sys | |
parent | f3cf16095e8169258d683c0c9dcc4ce6f8a6064f (diff) |
3rd arg to clock_getres() is not a const ptr
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/clock_gettime.2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/clock_gettime.2 b/lib/libc/sys/clock_gettime.2 index 575a045a0b7..71703271489 100644 --- a/lib/libc/sys/clock_gettime.2 +++ b/lib/libc/sys/clock_gettime.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: clock_gettime.2,v 1.4 1997/05/08 20:21:16 kstailey Exp $ +.\" $OpenBSD: clock_gettime.2,v 1.5 1997/05/29 14:54:09 kstailey Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -46,7 +46,7 @@ .Ft int .Fn clock_settime "clockid_t clock_id" "const struct timespec *tp" .Ft int -.Fn clock_getres "clockid_t clock_id" "const struct timespec *tp" +.Fn clock_getres "clockid_t clock_id" "struct timespec *tp" .Sh DESCRIPTION The .Fn clock_gettime |