Index: lib/libc/gen/directory.3 =================================================================== --- lib/libc/gen/directory.3 (wersja 227535) +++ lib/libc/gen/directory.3 (kopia robocza) @@ -64,7 +64,7 @@ .Ft int .Fn closedir "DIR *dirp" .Ft int -.Fn dirfd "DIR *dirp" +.Fn dirfd "const DIR *dirp" .Sh DESCRIPTION The .Fn opendir Index: lib/libc/sys/write.2 =================================================================== --- lib/libc/sys/write.2 (wersja 227535) +++ lib/libc/sys/write.2 (kopia robocza) @@ -41,12 +41,12 @@ .Lb libc .Sh SYNOPSIS .In sys/types.h -.In sys/uio.h .In unistd.h .Ft ssize_t .Fn write "int d" "const void *buf" "size_t nbytes" .Ft ssize_t .Fn pwrite "int d" "const void *buf" "size_t nbytes" "off_t offset" +.In sys/uio.h .Ft ssize_t .Fn writev "int d" "const struct iovec *iov" "int iovcnt" .Ft ssize_t Index: lib/libc/sys/stat.2 =================================================================== --- lib/libc/sys/stat.2 (wersja 227535) +++ lib/libc/sys/stat.2 (kopia robocza) @@ -48,6 +48,7 @@ .Fn lstat "const char *path" "struct stat *sb" .Ft int .Fn fstat "int fd" "struct stat *sb" +.In fcntl.h .Ft int .Fn fstatat "int fd" "const char *path" "struct stat *buf" "int flag" .Sh DESCRIPTION Index: lib/libc/sys/read.2 =================================================================== --- lib/libc/sys/read.2 (wersja 227535) +++ lib/libc/sys/read.2 (kopia robocza) @@ -41,12 +41,12 @@ .Lb libc .Sh SYNOPSIS .In sys/types.h -.In sys/uio.h .In unistd.h .Ft ssize_t .Fn read "int d" "void *buf" "size_t nbytes" .Ft ssize_t .Fn pread "int d" "void *buf" "size_t nbytes" "off_t offset" +.In sys/uio.h .Ft ssize_t .Fn readv "int d" "const struct iovec *iov" "int iovcnt" .Ft ssize_t