diff options
author | 1997-05-29 14:54:09 +0000 | |
---|---|---|
committer | 1997-05-29 14:54:09 +0000 | |
commit | baad6aa3c93f77a0f89ae8b6ca93b81e84ff69cf (patch) | |
tree | 5b3e2e9767ad1bf81bc47de053f4f5891b1c2a36 /lib/libc/sys/clock_gettime.2 | |
parent | Update Makefiles so that "make obj" works for sparc in src/distrib. (diff) | |
download | wireguard-openbsd-baad6aa3c93f77a0f89ae8b6ca93b81e84ff69cf.tar.xz wireguard-openbsd-baad6aa3c93f77a0f89ae8b6ca93b81e84ff69cf.zip |
3rd arg to clock_getres() is not a const ptr
Diffstat (limited to 'lib/libc/sys/clock_gettime.2')
-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 |