PR/47631: NAKAJIMA Yoshihiro
1. Utimens and lutimens don't require timeval but timespec. 2. The order of functions doesn't have a uniformity. 3. Utimens.2 and lutimens.2 aren't installed.
This commit is contained in:
parent
88a527aa60
commit
e04ecc45a2
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: utimes.2,v 1.36 2013/01/13 08:15:02 dholland Exp $
|
||||
.\" $NetBSD: utimes.2,v 1.37 2013/03/08 16:52:11 christos Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1990, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
|
@ -29,7 +29,7 @@
|
|||
.\"
|
||||
.\" @(#)utimes.2 8.1 (Berkeley) 6/4/93
|
||||
.\"
|
||||
.Dd November 18, 2012
|
||||
.Dd March 8, 2013
|
||||
.Dt UTIMES 2
|
||||
.Os
|
||||
.Sh NAME
|
||||
|
@ -50,12 +50,12 @@
|
|||
.Ft int
|
||||
.Fn lutimes "const char *path" "const struct timeval times[2]"
|
||||
.Ft int
|
||||
.Fn utimens "const char *path" "const struct timeval times[2]"
|
||||
.Ft int
|
||||
.Fn lutimens "const char *path" "const struct timeval times[2]"
|
||||
.Ft int
|
||||
.Fn futimes "int fd" "const struct timeval times[2]"
|
||||
.Ft int
|
||||
.Fn utimens "const char *path" "const struct timespec times[2]"
|
||||
.Ft int
|
||||
.Fn lutimens "const char *path" "const struct timespec times[2]"
|
||||
.Ft int
|
||||
.Fn futimens "int fd" "const struct timespec times[2]"
|
||||
.In fcntl.h
|
||||
.Ft int
|
||||
|
|
Loading…
Reference in New Issue