From: Alejandro Colomar Date: Sun, 30 Oct 2022 17:59:09 +0000 (+0100) Subject: Many pages: Use correct letter case in page titles (TH) X-Git-Tag: man-pages-6.02~163 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4c1c52748a06141996fccbf23fb8d9e15cba11e8;p=thirdparty%2Fman-pages.git Many pages: Use correct letter case in page titles (TH) Scripted change: $ find man* -type f \ | xargs grep -L '\.so' \ | while read f; do P=$(basename $f); T=$(grep '\.TH ' $f | cut -f2,3 -d' ' | sed 's/ /./'); p=$(echo $P | tr '[:upper:]' '[:lower:]'); t=$(echo $T | tr '[:upper:]' '[:lower:]'); Tn=$(echo $T | sed 's/\.[^.]\+$//') Pn=$(echo $P | sed 's/\.[^.]\+$//') N=$(man_section $f NAME \ | sed -n '/NAME/,/ - /p' \ | sed 's/ - .*//' \ | grep -v '^NAME$' \ | tr ', ' '\n' \ | grep -i "^$Pn$" \ | head -n1) test $P = $T \ && test -n $N \ && continue; if test "x$p" != "x$t"; then echo 1 $P $T $N; elif test -z "$N"; then echo 2 $P $T $N; else sed -i "/\.TH /s/$Tn/$N/" $f; fi; done; On 10/30/22 23:00, G. Branden Robinson wrote: > For those to whom this change is coming as an unpleasant surprise, the > forthcoming groff 1.23.0 features an option that will reverse this > change at rendering time. > > From groff_man(7): > > -rCT=1 Capitalize titles, setting the man page title (the first > argument to .TH) in full capitals in headers and footers. > This transformation is off by default because it discards > case distinction information. > > This register can also be set in a site-local "man.local" file to force > it on for all pages. On Debian-based systems, this file is in > /etc/groff. The following line will do the trick. > > .nr CT 1 > > The groff_man_style(7) man page offers further examples of such > rendering customization. > > /usr/local/share/groff/site-tmac/man.local > Put site‐local changes and customizations into this file. > > .\" Use narrower indentation on terminals and similar. > .if n .nr IN 4n > .\" Put only one space after the end of a sentence. > .ss 12 0 \" See groff(7). > .\" Keep pages narrow even on wide terminals. > .if n .if \n[LL]>78n .nr LL 78n > .\" Ensure hyperlinks are enabled for terminals. > .nr U 1 > > On multi‐user systems, it is more considerate to users whose > preferences may differ from the administrator’s to be less > aggressive with such settings, or to permit their override > with a user‐specific man.local file. This can be achieved by > placing one or both of following requests at the end of the > site‐local file. > .soquiet \V[XDG_CONFIG_HOME]/man.local > .soquiet \V[HOME]/.man.local > However, a security‐sandboxed man(1) program may lack > permission to open such files. Cc: Ingo Schwarze Cc: "G. Branden Robinson" Signed-off-by: Alejandro Colomar --- diff --git a/man1/iconv.1 b/man1/iconv.1 index 5140e15e1a..fba7669efe 100644 --- a/man1/iconv.1 +++ b/man1/iconv.1 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH ICONV 1 (date) "Linux man-pages (unreleased)" +.TH iconv 1 (date) "Linux man-pages (unreleased)" .SH NAME iconv \- convert text from one character encoding to another .SH SYNOPSIS diff --git a/man1/intro.1 b/man1/intro.1 index c5fcba1ce0..7ae8ab0a6b 100644 --- a/man1/intro.1 +++ b/man1/intro.1 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH INTRO 1 (date) "Linux man-pages (unreleased)" +.TH intro 1 (date) "Linux man-pages (unreleased)" .SH NAME intro \- introduction to user commands .SH DESCRIPTION diff --git a/man1/locale.1 b/man1/locale.1 index da240d1167..b53f6f4f1e 100644 --- a/man1/locale.1 +++ b/man1/locale.1 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH LOCALE 1 (date) "Linux man-pages (unreleased)" +.TH locale 1 (date) "Linux man-pages (unreleased)" .SH NAME locale \- get locale-specific information .SH SYNOPSIS diff --git a/man1/localedef.1 b/man1/localedef.1 index 9c393cd669..72e0e953cf 100644 --- a/man1/localedef.1 +++ b/man1/localedef.1 @@ -12,7 +12,7 @@ .\" Lars Wirzenius to document new functionality (as of GNU .\" C library 2.3.5). .\" -.TH LOCALEDEF 1 (date) "Linux man-pages (unreleased)" +.TH localedef 1 (date) "Linux man-pages (unreleased)" .SH NAME localedef \- compile locale definition files .SH SYNOPSIS diff --git a/man1/memusagestat.1 b/man1/memusagestat.1 index c416cdc975..5559ade692 100644 --- a/man1/memusagestat.1 +++ b/man1/memusagestat.1 @@ -1,7 +1,7 @@ .\" Copyright (c) 2013, Peter Schiffer .\" .\" SPDX-License-Identifier: GPL-2.0-or-later -.TH MEMUSAGESTAT 1 (date) "Linux man-pages (unreleased)" +.TH memusagestat 1 (date) "Linux man-pages (unreleased)" .SH NAME memusagestat \- generate graphic from memory profiling data .SH SYNOPSIS diff --git a/man1/mtrace.1 b/man1/mtrace.1 index 4d619830e2..54c13ccf80 100644 --- a/man1/mtrace.1 +++ b/man1/mtrace.1 @@ -1,7 +1,7 @@ .\" Copyright (c) 2013, Peter Schiffer (pschiffe@redhat.com) .\" .\" SPDX-License-Identifier: GPL-2.0-or-later -.TH MTRACE 1 (date) "Linux man-pages (unreleased)" +.TH mtrace 1 (date) "Linux man-pages (unreleased)" .SH NAME mtrace \- interpret the malloc trace log .SH SYNOPSIS diff --git a/man1/time.1 b/man1/time.1 index 2264d262d8..f6d9cb5a1e 100644 --- a/man1/time.1 +++ b/man1/time.1 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH TIME 1 (date) "Linux man-pages (unreleased)" +.TH time 1 (date) "Linux man-pages (unreleased)" .SH NAME time \- time a simple command or give resource usage .SH SYNOPSIS diff --git a/man2/_exit.2 b/man2/_exit.2 index 668e28e74f..2ab3c3cb1f 100644 --- a/man2/_exit.2 +++ b/man2/_exit.2 @@ -6,7 +6,7 @@ .\" Modified Wed Jul 21 23:02:38 1993 by Rik Faith .\" Modified 2001-11-17, aeb .\" -.TH _EXIT 2 (date) "Linux man-pages (unreleased)" +.TH _exit 2 (date) "Linux man-pages (unreleased)" .SH NAME _exit, _Exit \- terminate the calling process .SH LIBRARY diff --git a/man2/_syscall.2 b/man2/_syscall.2 index 01a28db356..cb4e456acc 100644 --- a/man2/_syscall.2 +++ b/man2/_syscall.2 @@ -16,7 +16,7 @@ .\" 2007-10-23 mtk: created as a new page, by taking the content .\" specific to the _syscall() macros from intro(2). .\" -.TH _SYSCALL 2 (date) "Linux man-pages (unreleased)" +.TH _syscall 2 (date) "Linux man-pages (unreleased)" .SH NAME _syscall \- invoking a system call without library support (OBSOLETE) .SH SYNOPSIS diff --git a/man2/accept.2 b/man2/accept.2 index 110b712dce..6e7fd28642 100644 --- a/man2/accept.2 +++ b/man2/accept.2 @@ -10,7 +10,7 @@ .\" Modified 2004-06-17 by Michael Kerrisk .\" 2008-12-04, mtk, Add documentation of accept4() .\" -.TH ACCEPT 2 (date) "Linux man-pages (unreleased)" +.TH accept 2 (date) "Linux man-pages (unreleased)" .SH NAME accept, accept4 \- accept a connection on a socket .SH LIBRARY diff --git a/man2/access.2 b/man2/access.2 index 43b67cb5d5..bbd806a5aa 100644 --- a/man2/access.2 +++ b/man2/access.2 @@ -20,7 +20,7 @@ .\" Modified 2004-06-23 by Michael Kerrisk .\" 2007-06-10, mtk, various parts rewritten, and added BUGS section. .\" -.TH ACCESS 2 (date) "Linux man-pages (unreleased)" +.TH access 2 (date) "Linux man-pages (unreleased)" .SH NAME access, faccessat, faccessat2 \- check user's permissions for a file .SH LIBRARY diff --git a/man2/acct.2 b/man2/acct.2 index 2ceb4f02f6..1a676b7c7b 100644 --- a/man2/acct.2 +++ b/man2/acct.2 @@ -9,7 +9,7 @@ .\" Modified 1998-11-04 by Tigran Aivazian .\" Modified 2004-05-27, 2004-06-17, 2004-06-23 by Michael Kerrisk .\" -.TH ACCT 2 (date) "Linux man-pages (unreleased)" +.TH acct 2 (date) "Linux man-pages (unreleased)" .SH NAME acct \- switch process accounting on or off .SH LIBRARY diff --git a/man2/add_key.2 b/man2/add_key.2 index 7883cabf7e..c3a91b0069 100644 --- a/man2/add_key.2 +++ b/man2/add_key.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH ADD_KEY 2 (date) "Linux man-pages (unreleased)" +.TH add_key 2 (date) "Linux man-pages (unreleased)" .SH NAME add_key \- add a key to the kernel's key management facility .SH LIBRARY diff --git a/man2/adjtimex.2 b/man2/adjtimex.2 index eb09cc21d8..c106928e92 100644 --- a/man2/adjtimex.2 +++ b/man2/adjtimex.2 @@ -7,7 +7,7 @@ .\" Modified 1997-07-30 by Paul Slootman .\" Modified 2004-05-27 by Michael Kerrisk .\" -.TH ADJTIMEX 2 (date) "Linux man-pages (unreleased)" +.TH adjtimex 2 (date) "Linux man-pages (unreleased)" .SH NAME adjtimex, clock_adjtime, ntp_adjtime \- tune kernel clock .SH LIBRARY diff --git a/man2/alarm.2 b/man2/alarm.2 index 6644f49d88..43c01a7a7b 100644 --- a/man2/alarm.2 +++ b/man2/alarm.2 @@ -7,7 +7,7 @@ .\" Modified Sun Jul 21 21:25:26 1996 by Andries Brouwer .\" Modified Wed Nov 6 03:46:05 1996 by Eric S. Raymond .\" -.TH ALARM 2 (date) "Linux man-pages (unreleased)" +.TH alarm 2 (date) "Linux man-pages (unreleased)" .SH NAME alarm \- set an alarm clock for delivery of a signal .SH LIBRARY diff --git a/man2/alloc_hugepages.2 b/man2/alloc_hugepages.2 index e6b919fc33..aaa3657379 100644 --- a/man2/alloc_hugepages.2 +++ b/man2/alloc_hugepages.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH ALLOC_HUGEPAGES 2 (date) "Linux man-pages (unreleased)" +.TH alloc_hugepages 2 (date) "Linux man-pages (unreleased)" .SH NAME alloc_hugepages, free_hugepages \- allocate or free huge pages .SH SYNOPSIS diff --git a/man2/arch_prctl.2 b/man2/arch_prctl.2 index c6388a4595..0a82e81005 100644 --- a/man2/arch_prctl.2 +++ b/man2/arch_prctl.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH ARCH_PRCTL 2 (date) "Linux man-pages (unreleased)" +.TH arch_prctl 2 (date) "Linux man-pages (unreleased)" .SH NAME arch_prctl \- set architecture-specific thread state .SH LIBRARY diff --git a/man2/bdflush.2 b/man2/bdflush.2 index c90cb83193..07ebeb9f2e 100644 --- a/man2/bdflush.2 +++ b/man2/bdflush.2 @@ -5,7 +5,7 @@ .\" Modified 1997-01-31 by Eric S. Raymond .\" Modified 2004-06-17 by Michael Kerrisk .\" -.TH BDFLUSH 2 (date) "Linux man-pages (unreleased)" +.TH bdflush 2 (date) "Linux man-pages (unreleased)" .SH NAME bdflush \- start, flush, or tune buffer-dirty-flush daemon .SH SYNOPSIS diff --git a/man2/bind.2 b/man2/bind.2 index 309628a7ab..350a2f7e18 100644 --- a/man2/bind.2 +++ b/man2/bind.2 @@ -18,7 +18,7 @@ .\" $Id: bind.2,v 1.3 1999/04/23 19:56:07 freitag Exp $ .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH BIND 2 (date) "Linux man-pages (unreleased)" +.TH bind 2 (date) "Linux man-pages (unreleased)" .SH NAME bind \- bind a name to a socket .SH LIBRARY diff --git a/man2/bpf.2 b/man2/bpf.2 index 7f56bbcd92..e92fa29b51 100644 --- a/man2/bpf.2 +++ b/man2/bpf.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH BPF 2 (date) "Linux man-pages (unreleased)" +.TH bpf 2 (date) "Linux man-pages (unreleased)" .SH NAME bpf \- perform a command on an extended BPF map or program .SH SYNOPSIS diff --git a/man2/brk.2 b/man2/brk.2 index df3584bac3..92321ea0fa 100644 --- a/man2/brk.2 +++ b/man2/brk.2 @@ -7,7 +7,7 @@ .\" Modified Wed Jul 21 19:52:58 1993 by Rik Faith .\" Modified Sun Aug 21 17:40:38 1994 by Rik Faith .\" -.TH BRK 2 (date) "Linux man-pages (unreleased)" +.TH brk 2 (date) "Linux man-pages (unreleased)" .SH NAME brk, sbrk \- change data segment size .SH LIBRARY diff --git a/man2/cacheflush.2 b/man2/cacheflush.2 index 8b13df6e94..8d53cfbbc6 100644 --- a/man2/cacheflush.2 +++ b/man2/cacheflush.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH CACHEFLUSH 2 (date) "Linux man-pages (unreleased)" +.TH cacheflush 2 (date) "Linux man-pages (unreleased)" .SH NAME cacheflush \- flush contents of instruction and/or data cache .SH LIBRARY diff --git a/man2/capget.2 b/man2/capget.2 index a9eda28175..8148a7d815 100644 --- a/man2/capget.2 +++ b/man2/capget.2 @@ -11,7 +11,7 @@ .\" 64-bit capability sets in kernel 2.6.2[45]. .\" Modified 2009-01-26, andi kleen .\" -.TH CAPGET 2 (date) "Linux man-pages (unreleased)" +.TH capget 2 (date) "Linux man-pages (unreleased)" .SH NAME capget, capset \- set/get capabilities of thread(s) .SH LIBRARY diff --git a/man2/chdir.2 b/man2/chdir.2 index a627ac6073..7331eb5fbc 100644 --- a/man2/chdir.2 +++ b/man2/chdir.2 @@ -10,7 +10,7 @@ .\" Modified 1997-08-21 by Joseph S. Myers .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH CHDIR 2 (date) "Linux man-pages (unreleased)" +.TH chdir 2 (date) "Linux man-pages (unreleased)" .SH NAME chdir, fchdir \- change working directory .SH LIBRARY diff --git a/man2/chmod.2 b/man2/chmod.2 index f09ba4752d..3bd2af6906 100644 --- a/man2/chmod.2 +++ b/man2/chmod.2 @@ -9,7 +9,7 @@ .\" : NFS details .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH CHMOD 2 (date) "Linux man-pages (unreleased)" +.TH chmod 2 (date) "Linux man-pages (unreleased)" .SH NAME chmod, fchmod, fchmodat \- change permissions of a file .SH LIBRARY diff --git a/man2/chown.2 b/man2/chown.2 index 75229639f8..cd81f96cdf 100644 --- a/man2/chown.2 +++ b/man2/chown.2 @@ -15,7 +15,7 @@ .\" (bsdgroups versus sysvgroups, and the effect of the parent .\" directory's set-group-ID mode bit). .\" -.TH CHOWN 2 (date) "Linux man-pages (unreleased)" +.TH chown 2 (date) "Linux man-pages (unreleased)" .SH NAME chown, fchown, lchown, fchownat \- change ownership of a file .SH LIBRARY diff --git a/man2/chroot.2 b/man2/chroot.2 index 5b8d320907..c2b11bbbc5 100644 --- a/man2/chroot.2 +++ b/man2/chroot.2 @@ -10,7 +10,7 @@ .\" Modified 1997-08-21 by Joseph S. Myers .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH CHROOT 2 (date) "Linux man-pages (unreleased)" +.TH chroot 2 (date) "Linux man-pages (unreleased)" .SH NAME chroot \- change root directory .SH LIBRARY diff --git a/man2/clock_getres.2 b/man2/clock_getres.2 index 5e5bc83266..228d21467b 100644 --- a/man2/clock_getres.2 +++ b/man2/clock_getres.2 @@ -8,7 +8,7 @@ .\" 2003-08-24 aeb, large parts rewritten .\" 2004-08-06 Christoph Lameter , SMP note .\" -.TH CLOCK_GETRES 2 (date) "Linux man-pages (unreleased)" +.TH clock_getres 2 (date) "Linux man-pages (unreleased)" .SH NAME clock_getres, clock_gettime, clock_settime \- clock and time functions .SH LIBRARY diff --git a/man2/clock_nanosleep.2 b/man2/clock_nanosleep.2 index 470bca6d84..b5cd3e9804 100644 --- a/man2/clock_nanosleep.2 +++ b/man2/clock_nanosleep.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH CLOCK_NANOSLEEP 2 (date) "Linux man-pages (unreleased)" +.TH clock_nanosleep 2 (date) "Linux man-pages (unreleased)" .SH NAME clock_nanosleep \- high-resolution sleep with specifiable clock .SH LIBRARY diff --git a/man2/clone.2 b/man2/clone.2 index 7198334c73..0936308595 100644 --- a/man2/clone.2 +++ b/man2/clone.2 @@ -37,7 +37,7 @@ .\" 2008-11-19, mtk, document CLONE_NEWIPC .\" 2008-11-19, Jens Axboe, mtk, document CLONE_IO .\" -.TH CLONE 2 (date) "Linux man-pages (unreleased)" +.TH clone 2 (date) "Linux man-pages (unreleased)" .SH NAME clone, __clone2, clone3 \- create a child process .SH LIBRARY diff --git a/man2/close.2 b/man2/close.2 index 9efa4c48a1..2fe28e003f 100644 --- a/man2/close.2 +++ b/man2/close.2 @@ -13,7 +13,7 @@ .\" Modified 2000-07-22 by Nicolás Lichtmaier .\" added note about close(2) not guaranteeing that data is safe on close. .\" -.TH CLOSE 2 (date) "Linux man-pages (unreleased)" +.TH close 2 (date) "Linux man-pages (unreleased)" .SH NAME close \- close a file descriptor .SH LIBRARY diff --git a/man2/close_range.2 b/man2/close_range.2 index 608cf930b5..acafc0eba7 100644 --- a/man2/close_range.2 +++ b/man2/close_range.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH CLOSE_RANGE 2 (date) "Linux man-pages (unreleased)" +.TH close_range 2 (date) "Linux man-pages (unreleased)" .SH NAME close_range \- close all file descriptors in a given range .SH LIBRARY diff --git a/man2/connect.2 b/man2/connect.2 index 2f717e8c5f..9e462ccc59 100644 --- a/man2/connect.2 +++ b/man2/connect.2 @@ -16,7 +16,7 @@ .\" Modified 1998, 1999 by Andi Kleen .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH CONNECT 2 (date) "Linux man-pages (unreleased)" +.TH connect 2 (date) "Linux man-pages (unreleased)" .SH NAME connect \- initiate a connection on a socket .SH LIBRARY diff --git a/man2/copy_file_range.2 b/man2/copy_file_range.2 index a51960eca3..3cb15e930b 100644 --- a/man2/copy_file_range.2 +++ b/man2/copy_file_range.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH COPY_FILE_RANGE 2 (date) "Linux man-pages (unreleased)" +.TH copy_file_range 2 (date) "Linux man-pages (unreleased)" .SH NAME copy_file_range \- Copy a range of data from one file to another .SH LIBRARY diff --git a/man2/create_module.2 b/man2/create_module.2 index 4b4f866df4..a5b8fb03c2 100644 --- a/man2/create_module.2 +++ b/man2/create_module.2 @@ -5,7 +5,7 @@ .\" 2006-02-09, some reformatting by Luc Van Oostenryck; some .\" reformatting and rewordings by mtk .\" -.TH CREATE_MODULE 2 (date) "Linux man-pages (unreleased)" +.TH create_module 2 (date) "Linux man-pages (unreleased)" .SH NAME create_module \- create a loadable module entry .SH SYNOPSIS diff --git a/man2/delete_module.2 b/man2/delete_module.2 index 80b21ebb51..8c30fe3910 100644 --- a/man2/delete_module.2 +++ b/man2/delete_module.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH DELETE_MODULE 2 (date) "Linux man-pages (unreleased)" +.TH delete_module 2 (date) "Linux man-pages (unreleased)" .SH NAME delete_module \- unload a kernel module .SH LIBRARY diff --git a/man2/dup.2 b/man2/dup.2 index 3ac1aeffb9..73e0a452ec 100644 --- a/man2/dup.2 +++ b/man2/dup.2 @@ -14,7 +14,7 @@ .\" details for dup2(). .\" 2008-10-09, mtk: add description of dup3() .\" -.TH DUP 2 (date) "Linux man-pages (unreleased)" +.TH dup 2 (date) "Linux man-pages (unreleased)" .SH NAME dup, dup2, dup3 \- duplicate a file descriptor .SH LIBRARY diff --git a/man2/epoll_create.2 b/man2/epoll_create.2 index 7c9285ee76..22485e6846 100644 --- a/man2/epoll_create.2 +++ b/man2/epoll_create.2 @@ -8,7 +8,7 @@ .\" Modified 2005-04-04 by Marko Kohtala .\" 2008-10-10, mtk: add description of epoll_create1() .\" -.TH EPOLL_CREATE 2 (date) "Linux man-pages (unreleased)" +.TH epoll_create 2 (date) "Linux man-pages (unreleased)" .SH NAME epoll_create, epoll_create1 \- open an epoll file descriptor .SH LIBRARY diff --git a/man2/epoll_ctl.2 b/man2/epoll_ctl.2 index b8f36b2a97..4da0811597 100644 --- a/man2/epoll_ctl.2 +++ b/man2/epoll_ctl.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH EPOLL_CTL 2 (date) "Linux man-pages (unreleased)" +.TH epoll_ctl 2 (date) "Linux man-pages (unreleased)" .SH NAME epoll_ctl \- control interface for an epoll file descriptor .SH LIBRARY diff --git a/man2/epoll_wait.2 b/man2/epoll_wait.2 index 130b3c1719..100a9211ed 100644 --- a/man2/epoll_wait.2 +++ b/man2/epoll_wait.2 @@ -6,7 +6,7 @@ .\" .\" 2007-04-30: mtk, Added description of epoll_pwait() .\" -.TH EPOLL_WAIT 2 (date) "Linux man-pages (unreleased)" +.TH epoll_wait 2 (date) "Linux man-pages (unreleased)" .SH NAME epoll_wait, epoll_pwait, epoll_pwait2 \- wait for an I/O event on an epoll file descriptor diff --git a/man2/eventfd.2 b/man2/eventfd.2 index 74736934c4..592b8536bb 100644 --- a/man2/eventfd.2 +++ b/man2/eventfd.2 @@ -5,7 +5,7 @@ .\" .\" 2008-10-10, mtk: describe eventfd2(), and EFD_NONBLOCK and EFD_CLOEXEC .\" -.TH EVENTFD 2 (date) "Linux man-pages (unreleased)" +.TH eventfd 2 (date) "Linux man-pages (unreleased)" .SH NAME eventfd \- create a file descriptor for event notification .SH LIBRARY diff --git a/man2/execveat.2 b/man2/execveat.2 index 346e86cbcc..c54d309966 100644 --- a/man2/execveat.2 +++ b/man2/execveat.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH EXECVEAT 2 (date) "Linux man-pages (unreleased)" +.TH execveat 2 (date) "Linux man-pages (unreleased)" .SH NAME execveat \- execute program relative to a directory file descriptor .SH LIBRARY diff --git a/man2/exit_group.2 b/man2/exit_group.2 index f17e821954..b270278065 100644 --- a/man2/exit_group.2 +++ b/man2/exit_group.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH EXIT_GROUP 2 (date) "Linux man-pages (unreleased)" +.TH exit_group 2 (date) "Linux man-pages (unreleased)" .SH NAME exit_group \- exit all threads in a process .SH LIBRARY diff --git a/man2/fallocate.2 b/man2/fallocate.2 index 2940b2f2b0..7bdd70aa3d 100644 --- a/man2/fallocate.2 +++ b/man2/fallocate.2 @@ -6,7 +6,7 @@ .\" 2011-09-19: Added FALLOC_FL_PUNCH_HOLE .\" 2011-09-19: Substantial restructuring of the page .\" -.TH FALLOCATE 2 (date) "Linux man-pages (unreleased)" +.TH fallocate 2 (date) "Linux man-pages (unreleased)" .SH NAME fallocate \- manipulate file space .SH LIBRARY diff --git a/man2/fanotify_init.2 b/man2/fanotify_init.2 index d43cc897bd..34cf035249 100644 --- a/man2/fanotify_init.2 +++ b/man2/fanotify_init.2 @@ -1,7 +1,7 @@ \" Copyright (C) 2013, Heinrich Schuchardt .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft -.TH FANOTIFY_INIT 2 (date) "Linux man-pages (unreleased)" +.TH fanotify_init 2 (date) "Linux man-pages (unreleased)" .SH NAME fanotify_init \- create and initialize fanotify group .SH LIBRARY diff --git a/man2/fcntl.2 b/man2/fcntl.2 index 665dffc01e..6c51d7171b 100644 --- a/man2/fcntl.2 +++ b/man2/fcntl.2 @@ -44,7 +44,7 @@ .\" 2017-06-26, Jens Axboe .\" Document F_{GET,SET}_RW_HINT and F_{GET,SET}_FILE_RW_HINT .\" -.TH FCNTL 2 (date) "Linux man-pages (unreleased)" +.TH fcntl 2 (date) "Linux man-pages (unreleased)" .SH NAME fcntl \- manipulate file descriptor .SH LIBRARY diff --git a/man2/flock.2 b/man2/flock.2 index e91f6fff59..388057e99b 100644 --- a/man2/flock.2 +++ b/man2/flock.2 @@ -12,7 +12,7 @@ .\" FIXME Maybe document LOCK_MAND, LOCK_RW, LOCK_READ, LOCK_WRITE .\" which only have effect for SAMBA. .\" -.TH FLOCK 2 (date) "Linux man-pages (unreleased)" +.TH flock 2 (date) "Linux man-pages (unreleased)" .SH NAME flock \- apply or remove an advisory lock on an open file .SH LIBRARY diff --git a/man2/fork.2 b/man2/fork.2 index eb72696e54..51caf5868a 100644 --- a/man2/fork.2 +++ b/man2/fork.2 @@ -16,7 +16,7 @@ .\" Greatly expanded, to describe all attributes that differ .\" parent and child. .\" -.TH FORK 2 (date) "Linux man-pages (unreleased)" +.TH fork 2 (date) "Linux man-pages (unreleased)" .SH NAME fork \- create a child process .SH LIBRARY diff --git a/man2/fsync.2 b/man2/fsync.2 index 795cc84e81..8e5a674065 100644 --- a/man2/fsync.2 +++ b/man2/fsync.2 @@ -15,7 +15,7 @@ .\" 2006-04-28, mtk, substantial rewrite of various parts. .\" 2012-02-27 Various changes by Christoph Hellwig .\" -.TH FSYNC 2 (date) "Linux man-pages (unreleased)" +.TH fsync 2 (date) "Linux man-pages (unreleased)" .SH NAME fsync, fdatasync \- synchronize a file's in-core state with storage device .SH LIBRARY diff --git a/man2/futex.2 b/man2/futex.2 index c9df0fb806..c8504ff978 100644 --- a/man2/futex.2 +++ b/man2/futex.2 @@ -19,7 +19,7 @@ .\" FIXME Do we need to add some text regarding Torvald Riegel's 2015-01-24 mail .\" http://thread.gmane.org/gmane.linux.kernel/1703405/focus=1873242 .\" -.TH FUTEX 2 (date) "Linux man-pages (unreleased)" +.TH futex 2 (date) "Linux man-pages (unreleased)" .SH NAME futex \- fast user-space locking .SH LIBRARY diff --git a/man2/futimesat.2 b/man2/futimesat.2 index 3515ccbcb3..d7de23f679 100644 --- a/man2/futimesat.2 +++ b/man2/futimesat.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH FUTIMESAT 2 (date) "Linux man-pages (unreleased)" +.TH futimesat 2 (date) "Linux man-pages (unreleased)" .SH NAME futimesat \- change timestamps of a file relative to a \ directory file descriptor diff --git a/man2/get_kernel_syms.2 b/man2/get_kernel_syms.2 index fb9acef689..4bdd98b443 100644 --- a/man2/get_kernel_syms.2 +++ b/man2/get_kernel_syms.2 @@ -5,7 +5,7 @@ .\" 2006-02-09, some reformatting by Luc Van Oostenryck; some .\" reformatting and rewordings by mtk .\" -.TH GET_KERNEL_SYMS 2 (date) "Linux man-pages (unreleased)" +.TH get_kernel_syms 2 (date) "Linux man-pages (unreleased)" .SH NAME get_kernel_syms \- retrieve exported kernel and module symbols .SH SYNOPSIS diff --git a/man2/get_mempolicy.2 b/man2/get_mempolicy.2 index 59a2a72a5d..2954451ded 100644 --- a/man2/get_mempolicy.2 +++ b/man2/get_mempolicy.2 @@ -24,7 +24,7 @@ .\" 2007-08-27, Lee Schermerhorn .\" more precise specification of behavior. .\" -.TH GET_MEMPOLICY 2 (date) "Linux man-pages (unreleased)" +.TH get_mempolicy 2 (date) "Linux man-pages (unreleased)" .SH NAME get_mempolicy \- retrieve NUMA memory policy for a thread .SH LIBRARY diff --git a/man2/get_robust_list.2 b/man2/get_robust_list.2 index 7f2797e0a9..ab8c0021aa 100644 --- a/man2/get_robust_list.2 +++ b/man2/get_robust_list.2 @@ -7,7 +7,7 @@ .\" FIXME Something could be added to this page (or exit(2)) .\" about exit_robust_list processing .\" -.TH GET_ROBUST_LIST 2 (date) "Linux man-pages (unreleased)" +.TH get_robust_list 2 (date) "Linux man-pages (unreleased)" .SH NAME get_robust_list, set_robust_list \- get/set list of robust futexes .SH LIBRARY diff --git a/man2/getcpu.2 b/man2/getcpu.2 index a1df24dbcd..0e7293105b 100644 --- a/man2/getcpu.2 +++ b/man2/getcpu.2 @@ -9,7 +9,7 @@ .\" .\" 2008, mtk, various edits .\" -.TH GETCPU 2 (date) "Linux man-pages (unreleased)" +.TH getcpu 2 (date) "Linux man-pages (unreleased)" .SH NAME getcpu \- determine CPU and NUMA node on which the calling thread is running .SH LIBRARY diff --git a/man2/getdents.2 b/man2/getdents.2 index e9f812a303..0403110995 100644 --- a/man2/getdents.2 +++ b/man2/getdents.2 @@ -8,7 +8,7 @@ .\" Derived from 'readdir.2'. .\" Modified Tue Oct 22 08:11:14 EDT 1996 by Eric S. Raymond .\" -.TH GETDENTS 2 (date) "Linux man-pages (unreleased)" +.TH getdents 2 (date) "Linux man-pages (unreleased)" .SH NAME getdents, getdents64 \- get directory entries .SH LIBRARY diff --git a/man2/getdomainname.2 b/man2/getdomainname.2 index 48973f9ff0..c26cd368f5 100644 --- a/man2/getdomainname.2 +++ b/man2/getdomainname.2 @@ -6,7 +6,7 @@ .\" Modified 2004-06-17 by Michael Kerrisk .\" Modified 2008-11-27 by mtk .\" -.TH GETDOMAINNAME 2 (date) "Linux man-pages (unreleased)" +.TH getdomainname 2 (date) "Linux man-pages (unreleased)" .SH NAME getdomainname, setdomainname \- get/set NIS domain name .SH LIBRARY diff --git a/man2/getgid.2 b/man2/getgid.2 index f6315a1bf3..c76495107a 100644 --- a/man2/getgid.2 +++ b/man2/getgid.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETGID 2 (date) "Linux man-pages (unreleased)" +.TH getgid 2 (date) "Linux man-pages (unreleased)" .SH NAME getgid, getegid \- get group identity .SH LIBRARY diff --git a/man2/getgroups.2 b/man2/getgroups.2 index 9f0c290fcc..7ec9e5a685 100644 --- a/man2/getgroups.2 +++ b/man2/getgroups.2 @@ -9,7 +9,7 @@ .\" 2008-05-03, mtk, expanded and rewrote parts of DESCRIPTION and RETURN .\" VALUE, made style of page more consistent with man-pages style. .\" -.TH GETGROUPS 2 (date) "Linux man-pages (unreleased)" +.TH getgroups 2 (date) "Linux man-pages (unreleased)" .SH NAME getgroups, setgroups \- get/set list of supplementary group IDs .SH LIBRARY diff --git a/man2/gethostname.2 b/man2/gethostname.2 index 5ecab8cf7c..38c3e262c5 100644 --- a/man2/gethostname.2 +++ b/man2/gethostname.2 @@ -9,7 +9,7 @@ .\" Modified 2004-06-17 by mtk .\" Modified 2008-11-27 by mtk .\" -.TH GETHOSTNAME 2 (date) "Linux man-pages (unreleased)" +.TH gethostname 2 (date) "Linux man-pages (unreleased)" .SH NAME gethostname, sethostname \- get/set hostname .SH LIBRARY diff --git a/man2/getitimer.2 b/man2/getitimer.2 index 380a9e29df..0736837a42 100644 --- a/man2/getitimer.2 +++ b/man2/getitimer.2 @@ -10,7 +10,7 @@ .\" 2005-04-06 mtk, Matthias Lang .\" Noted MAX_SEC_IN_JIFFIES ceiling .\" -.TH GETITIMER 2 (date) "Linux man-pages (unreleased)" +.TH getitimer 2 (date) "Linux man-pages (unreleased)" .SH NAME getitimer, setitimer \- get or set value of an interval timer .SH LIBRARY diff --git a/man2/getpagesize.2 b/man2/getpagesize.2 index 8d6fe0daab..10776a7382 100644 --- a/man2/getpagesize.2 +++ b/man2/getpagesize.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETPAGESIZE 2 (date) "Linux man-pages (unreleased)" +.TH getpagesize 2 (date) "Linux man-pages (unreleased)" .SH NAME getpagesize \- get memory page size .SH LIBRARY diff --git a/man2/getpeername.2 b/man2/getpeername.2 index 6430c47ec6..0a228fe143 100644 --- a/man2/getpeername.2 +++ b/man2/getpeername.2 @@ -11,7 +11,7 @@ .\" Modified 17 Jul 2002, Michael Kerrisk .\" Added 'socket' to NAME, so that "man -k socket" will show this page. .\" -.TH GETPEERNAME 2 (date) "Linux man-pages (unreleased)" +.TH getpeername 2 (date) "Linux man-pages (unreleased)" .SH NAME getpeername \- get name of connected peer socket .SH LIBRARY diff --git a/man2/getpid.2 b/man2/getpid.2 index 339aecb075..bb6f0f4abb 100644 --- a/man2/getpid.2 +++ b/man2/getpid.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETPID 2 (date) "Linux man-pages (unreleased)" +.TH getpid 2 (date) "Linux man-pages (unreleased)" .SH NAME getpid, getppid \- get process identification .SH LIBRARY diff --git a/man2/getpriority.2 b/man2/getpriority.2 index 9bd1419a36..432c15f402 100644 --- a/man2/getpriority.2 +++ b/man2/getpriority.2 @@ -14,7 +14,7 @@ .\" Clarified meaning of 0 value for 'who' argument .\" Modified 2004-05-27 by Michael Kerrisk .\" -.TH GETPRIORITY 2 (date) "Linux man-pages (unreleased)" +.TH getpriority 2 (date) "Linux man-pages (unreleased)" .SH NAME getpriority, setpriority \- get/set program scheduling priority .SH LIBRARY diff --git a/man2/getrandom.2 b/man2/getrandom.2 index 83ca574625..402a49d8de 100644 --- a/man2/getrandom.2 +++ b/man2/getrandom.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETRANDOM 2 (date) "Linux man-pages (unreleased)" +.TH getrandom 2 (date) "Linux man-pages (unreleased)" .SH NAME getrandom \- obtain a series of random bytes .SH LIBRARY diff --git a/man2/getresuid.2 b/man2/getresuid.2 index 60fdd8e921..878cdcfcff 100644 --- a/man2/getresuid.2 +++ b/man2/getresuid.2 @@ -5,7 +5,7 @@ .\" .\" Modified, 2003-05-26, Michael Kerrisk, .\" -.TH GETRESUID 2 (date) "Linux man-pages (unreleased)" +.TH getresuid 2 (date) "Linux man-pages (unreleased)" .SH NAME getresuid, getresgid \- get real, effective, and saved user/group IDs .SH LIBRARY diff --git a/man2/getrusage.2 b/man2/getrusage.2 index 7a06e0d6f4..8d720ad2ad 100644 --- a/man2/getrusage.2 +++ b/man2/getrusage.2 @@ -16,7 +16,7 @@ .\" document ru_maxrss .\" 2010-05-24, mtk, enhanced description of various fields .\" -.TH GETRUSAGE 2 (date) "Linux man-pages (unreleased)" +.TH getrusage 2 (date) "Linux man-pages (unreleased)" .SH NAME getrusage \- get resource usage .SH LIBRARY diff --git a/man2/getsid.2 b/man2/getsid.2 index ad6b2beea3..837fe7e4eb 100644 --- a/man2/getsid.2 +++ b/man2/getsid.2 @@ -5,7 +5,7 @@ .\" .\" Modified Thu Oct 31 14:18:40 1996 by Eric S. Raymond .\" Modified 2001-12-17, aeb -.TH GETSID 2 (date) "Linux man-pages (unreleased)" +.TH getsid 2 (date) "Linux man-pages (unreleased)" .SH NAME getsid \- get session ID .SH LIBRARY diff --git a/man2/getsockname.2 b/man2/getsockname.2 index 969b27c53d..331dadaeea 100644 --- a/man2/getsockname.2 +++ b/man2/getsockname.2 @@ -9,7 +9,7 @@ .\" Modified Tue Oct 22 00:22:35 EDT 1996 by Eric S. Raymond .\" Modified Sun Mar 28 21:26:46 1999 by Andries Brouwer .\" -.TH GETSOCKNAME 2 (date) "Linux man-pages (unreleased)" +.TH getsockname 2 (date) "Linux man-pages (unreleased)" .SH NAME getsockname \- get socket name .SH LIBRARY diff --git a/man2/getsockopt.2 b/man2/getsockopt.2 index 15ba3bb263..ad36b83408 100644 --- a/man2/getsockopt.2 +++ b/man2/getsockopt.2 @@ -13,7 +13,7 @@ .\" Modified 1999 by Andi Kleen . .\" Removed most stuff because it is in socket.7 now. .\" -.TH GETSOCKOPT 2 (date) "Linux man-pages (unreleased)" +.TH getsockopt 2 (date) "Linux man-pages (unreleased)" .SH NAME getsockopt, setsockopt \- get and set options on sockets .SH LIBRARY diff --git a/man2/gettid.2 b/man2/gettid.2 index 1cfef78b80..3d3f697277 100644 --- a/man2/gettid.2 +++ b/man2/gettid.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETTID 2 (date) "Linux man-pages (unreleased)" +.TH gettid 2 (date) "Linux man-pages (unreleased)" .SH NAME gettid \- get thread identification .SH LIBRARY diff --git a/man2/gettimeofday.2 b/man2/gettimeofday.2 index 7e6648a2ee..1c97758207 100644 --- a/man2/gettimeofday.2 +++ b/man2/gettimeofday.2 @@ -17,7 +17,7 @@ .\" Modified, 2004-05-27 by Michael Kerrisk .\" Added notes on capability requirement. .\" -.TH GETTIMEOFDAY 2 (date) "Linux man-pages (unreleased)" +.TH gettimeofday 2 (date) "Linux man-pages (unreleased)" .SH NAME gettimeofday, settimeofday \- get / set time .SH LIBRARY diff --git a/man2/getuid.2 b/man2/getuid.2 index 6c889b4e6d..2ae5c73bb4 100644 --- a/man2/getuid.2 +++ b/man2/getuid.2 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" Historical remark, aeb, 2004-06-05 -.TH GETUID 2 (date) "Linux man-pages (unreleased)" +.TH getuid 2 (date) "Linux man-pages (unreleased)" .SH NAME getuid, geteuid \- get user identity .SH LIBRARY diff --git a/man2/getunwind.2 b/man2/getunwind.2 index 0d167307b2..93ef8259a6 100644 --- a/man2/getunwind.2 +++ b/man2/getunwind.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETUNWIND 2 (date) "Linux man-pages (unreleased)" +.TH getunwind 2 (date) "Linux man-pages (unreleased)" .SH NAME getunwind \- copy the unwind data to caller's buffer .SH LIBRARY diff --git a/man2/getxattr.2 b/man2/getxattr.2 index b05ba7d41b..e509eb2af3 100644 --- a/man2/getxattr.2 +++ b/man2/getxattr.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH GETXATTR 2 (date) "Linux man-pages (unreleased)" +.TH getxattr 2 (date) "Linux man-pages (unreleased)" .SH NAME getxattr, lgetxattr, fgetxattr \- retrieve an extended attribute value .SH LIBRARY diff --git a/man2/idle.2 b/man2/idle.2 index 4c7464d0a3..073e5197cc 100644 --- a/man2/idle.2 +++ b/man2/idle.2 @@ -9,7 +9,7 @@ .\" N.B. calling "idle" from user process used to hang process! .\" Modified Thu Oct 31 14:41:15 1996 by Eric S. Raymond .\" " -.TH IDLE 2 (date) "Linux man-pages (unreleased)" +.TH idle 2 (date) "Linux man-pages (unreleased)" .SH NAME idle \- make process 0 idle .SH SYNOPSIS diff --git a/man2/init_module.2 b/man2/init_module.2 index 828c7f215f..8df668b0ca 100644 --- a/man2/init_module.2 +++ b/man2/init_module.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH INIT_MODULE 2 (date) "Linux man-pages (unreleased)" +.TH init_module 2 (date) "Linux man-pages (unreleased)" .SH NAME init_module, finit_module \- load a kernel module .SH LIBRARY diff --git a/man2/inotify_add_watch.2 b/man2/inotify_add_watch.2 index 1557fb39b8..7d60c8bd9f 100644 --- a/man2/inotify_add_watch.2 +++ b/man2/inotify_add_watch.2 @@ -6,7 +6,7 @@ .\" 2005-07-19 Robert Love - initial version .\" 2006-02-07 mtk, various changes .\" -.TH INOTIFY_ADD_WATCH 2 (date) "Linux man-pages (unreleased)" +.TH inotify_add_watch 2 (date) "Linux man-pages (unreleased)" .SH NAME inotify_add_watch \- add a watch to an initialized inotify instance .SH LIBRARY diff --git a/man2/inotify_init.2 b/man2/inotify_init.2 index 9707f7a3c0..11a4bf0ecc 100644 --- a/man2/inotify_init.2 +++ b/man2/inotify_init.2 @@ -7,7 +7,7 @@ .\" 2006-02-07 mtk, minor changes .\" 2008-10-10 mtk: add description of inotify_init1() .\" -.TH INOTIFY_INIT 2 (date) "Linux man-pages (unreleased)" +.TH inotify_init 2 (date) "Linux man-pages (unreleased)" .SH NAME inotify_init, inotify_init1 \- initialize an inotify instance .SH LIBRARY diff --git a/man2/inotify_rm_watch.2 b/man2/inotify_rm_watch.2 index 10810bdfce..64731c0909 100644 --- a/man2/inotify_rm_watch.2 +++ b/man2/inotify_rm_watch.2 @@ -5,7 +5,7 @@ .\" 2005-07-19 Robert Love - initial version .\" 2006-02-07 mtk, minor changes .\" -.TH INOTIFY_RM_WATCH 2 (date) "Linux man-pages (unreleased)" +.TH inotify_rm_watch 2 (date) "Linux man-pages (unreleased)" .SH NAME inotify_rm_watch \- remove an existing watch from an inotify instance .SH LIBRARY diff --git a/man2/intro.2 b/man2/intro.2 index da5ad34c67..ef1e0cad1f 100644 --- a/man2/intro.2 +++ b/man2/intro.2 @@ -6,7 +6,7 @@ .\" new _syscall(2) page, and substantially enhanced and rewrote .\" the remaining material on this page. .\" -.TH INTRO 2 (date) "Linux man-pages (unreleased)" +.TH intro 2 (date) "Linux man-pages (unreleased)" .SH NAME intro \- introduction to system calls .SH DESCRIPTION diff --git a/man2/io_cancel.2 b/man2/io_cancel.2 index 6bed5ac2a7..b5ad9cd2b9 100644 --- a/man2/io_cancel.2 +++ b/man2/io_cancel.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH IO_CANCEL 2 (date) "Linux man-pages (unreleased)" +.TH io_cancel 2 (date) "Linux man-pages (unreleased)" .SH NAME io_cancel \- cancel an outstanding asynchronous I/O operation .SH LIBRARY diff --git a/man2/io_destroy.2 b/man2/io_destroy.2 index d104536c3d..783d57397c 100644 --- a/man2/io_destroy.2 +++ b/man2/io_destroy.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH IO_DESTROY 2 (date) "Linux man-pages (unreleased)" +.TH io_destroy 2 (date) "Linux man-pages (unreleased)" .SH NAME io_destroy \- destroy an asynchronous I/O context .SH LIBRARY diff --git a/man2/io_getevents.2 b/man2/io_getevents.2 index bfa435bf24..489a6a8aa4 100644 --- a/man2/io_getevents.2 +++ b/man2/io_getevents.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH IO_GETEVENTS 2 (date) "Linux man-pages (unreleased)" +.TH io_getevents 2 (date) "Linux man-pages (unreleased)" .SH NAME io_getevents \- read asynchronous I/O events from the completion queue .SH LIBRARY diff --git a/man2/io_setup.2 b/man2/io_setup.2 index b0d1adad1b..95b6b677cd 100644 --- a/man2/io_setup.2 +++ b/man2/io_setup.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH IO_SETUP 2 (date) "Linux man-pages (unreleased)" +.TH io_setup 2 (date) "Linux man-pages (unreleased)" .SH NAME io_setup \- create an asynchronous I/O context .SH LIBRARY diff --git a/man2/io_submit.2 b/man2/io_submit.2 index 20b45dfaad..e21b898136 100644 --- a/man2/io_submit.2 +++ b/man2/io_submit.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH IO_SUBMIT 2 (date) "Linux man-pages (unreleased)" +.TH io_submit 2 (date) "Linux man-pages (unreleased)" .SH NAME io_submit \- submit asynchronous I/O blocks for processing .SH LIBRARY diff --git a/man2/ioctl.2 b/man2/ioctl.2 index d30d2c6c65..ed3ec14802 100644 --- a/man2/ioctl.2 +++ b/man2/ioctl.2 @@ -10,7 +10,7 @@ .\" Modified 1999-06-25 by Rachael Munns .\" Modified 2000-09-21 by Andries Brouwer .\" -.TH IOCTL 2 (date) "Linux man-pages (unreleased)" +.TH ioctl 2 (date) "Linux man-pages (unreleased)" .SH NAME ioctl \- control device .SH LIBRARY diff --git a/man2/ioctl_console.2 b/man2/ioctl_console.2 index 44d73aa89f..4eb66b2ba1 100644 --- a/man2/ioctl_console.2 +++ b/man2/ioctl_console.2 @@ -18,7 +18,7 @@ .\" VT_UNLOCKSWITCH (since 1.3.47, needs CAP_SYS_TTY_CONFIG) .\" VT_GETHIFONTMASK (since 2.6.18) .\" -.TH IOCTL_CONSOLE 2 (date) "Linux man-pages (unreleased)" +.TH ioctl_console 2 (date) "Linux man-pages (unreleased)" .SH NAME ioctl_console \- ioctls for console terminal and virtual consoles .SH DESCRIPTION diff --git a/man2/ioctl_fat.2 b/man2/ioctl_fat.2 index 053ae012b3..b968b8acd7 100644 --- a/man2/ioctl_fat.2 +++ b/man2/ioctl_fat.2 @@ -1,7 +1,7 @@ .\" Copyright (C) 2014, Heinrich Schuchardt .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft -.TH IOCTL_FAT 2 (date) "Linux man-pages (unreleased)" +.TH ioctl_fat 2 (date) "Linux man-pages (unreleased)" .SH NAME ioctl_fat \- manipulating the FAT filesystem .SH LIBRARY diff --git a/man2/ioctl_ficlonerange.2 b/man2/ioctl_ficlonerange.2 index d54a64e588..bd6f4220ee 100644 --- a/man2/ioctl_ficlonerange.2 +++ b/man2/ioctl_ficlonerange.2 @@ -1,7 +1,7 @@ .\" Copyright (c) 2016, Oracle. All rights reserved. .\" .\" SPDX-License-Identifier: GPL-2.0-or-later -.TH IOCTL_FICLONERANGE 2 (date) "Linux man-pages (unreleased)" +.TH ioctl_ficlonerange 2 (date) "Linux man-pages (unreleased)" .SH NAME ioctl_ficlonerange, ioctl_ficlone \- share some the data of one file with another file diff --git a/man2/ioctl_fideduperange.2 b/man2/ioctl_fideduperange.2 index 32ae72706f..117e85d73f 100644 --- a/man2/ioctl_fideduperange.2 +++ b/man2/ioctl_fideduperange.2 @@ -1,7 +1,7 @@ .\" Copyright (c) 2016, Oracle. All rights reserved. .\" .\" SPDX-License-Identifier: GPL-2.0-or-later -.TH IOCTL_FIDEDUPERANGE 2 (date) "Linux man-pages (unreleased)" +.TH ioctl_fideduperange 2 (date) "Linux man-pages (unreleased)" .SH NAME ioctl_fideduperange \- share some the data of one file with another file .SH LIBRARY diff --git a/man2/ioctl_fslabel.2 b/man2/ioctl_fslabel.2 index a4b483939c..082b1c9831 100644 --- a/man2/ioctl_fslabel.2 +++ b/man2/ioctl_fslabel.2 @@ -1,7 +1,7 @@ .\" Copyright (c) 2018, Red Hat, Inc. All rights reserved. .\" .\" SPDX-License-Identifier: GPL-2.0-or-later -.TH IOCTL_FSLABEL 2 (date) "Linux man-pages (unreleased)" +.TH ioctl_fslabel 2 (date) "Linux man-pages (unreleased)" .SH NAME ioctl_fslabel \- get or set a filesystem label .SH LIBRARY diff --git a/man2/ioctl_getfsmap.2 b/man2/ioctl_getfsmap.2 index 3c55930ccf..36d284d452 100644 --- a/man2/ioctl_getfsmap.2 +++ b/man2/ioctl_getfsmap.2 @@ -1,7 +1,7 @@ .\" Copyright (c) 2017, Oracle. All rights reserved. .\" .\" SPDX-License-Identifier: GPL-2.0-or-later -.TH IOCTL_GETFSMAP 2 (date) "Linux man-pages (unreleased)" +.TH ioctl_getfsmap 2 (date) "Linux man-pages (unreleased)" .SH NAME ioctl_getfsmap \- retrieve the physical layout of the filesystem .SH LIBRARY diff --git a/man2/ioctl_iflags.2 b/man2/ioctl_iflags.2 index 11fe5eb322..2578483ea4 100644 --- a/man2/ioctl_iflags.2 +++ b/man2/ioctl_iflags.2 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH IOCTL_IFLAGS 2 (date) "Linux man-pages (unreleased)" +.TH ioctl_iflags 2 (date) "Linux man-pages (unreleased)" .SH NAME ioctl_iflags \- ioctl() operations for inode flags .SH DESCRIPTION diff --git a/man2/ioctl_ns.2 b/man2/ioctl_ns.2 index 8d79849034..82d88231b2 100644 --- a/man2/ioctl_ns.2 +++ b/man2/ioctl_ns.2 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH IOCTL_NS 2 (date) "Linux man-pages (unreleased)" +.TH ioctl_ns 2 (date) "Linux man-pages (unreleased)" .SH NAME ioctl_ns \- ioctl() operations for Linux namespaces .SH DESCRIPTION diff --git a/man2/ioctl_tty.2 b/man2/ioctl_tty.2 index 41ff38b6f5..663851cb7e 100644 --- a/man2/ioctl_tty.2 +++ b/man2/ioctl_tty.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH IOCTL_TTY 2 (date) "Linux man-pages (unreleased)" +.TH ioctl_tty 2 (date) "Linux man-pages (unreleased)" .SH NAME ioctl_tty \- ioctls for terminals and serial lines .SH LIBRARY diff --git a/man2/ioctl_userfaultfd.2 b/man2/ioctl_userfaultfd.2 index edb56c8cd1..6b8d86f504 100644 --- a/man2/ioctl_userfaultfd.2 +++ b/man2/ioctl_userfaultfd.2 @@ -5,7 +5,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH IOCTL_USERFAULTFD 2 (date) "Linux man-pages (unreleased)" +.TH ioctl_userfaultfd 2 (date) "Linux man-pages (unreleased)" .SH NAME ioctl_userfaultfd \- create a file descriptor for handling page faults in user space diff --git a/man2/ioperm.2 b/man2/ioperm.2 index f2919c7c54..1b07ab1c05 100644 --- a/man2/ioperm.2 +++ b/man2/ioperm.2 @@ -12,7 +12,7 @@ .\" Modified, 27 May 2004, Michael Kerrisk .\" Added notes on capability requirements .\" -.TH IOPERM 2 (date) "Linux man-pages (unreleased)" +.TH ioperm 2 (date) "Linux man-pages (unreleased)" .SH NAME ioperm \- set port input/output permissions .SH LIBRARY diff --git a/man2/iopl.2 b/man2/iopl.2 index 6e94c13302..005910e1c7 100644 --- a/man2/iopl.2 +++ b/man2/iopl.2 @@ -10,7 +10,7 @@ .\" Modified, 27 May 2004, Michael Kerrisk .\" Added notes on capability requirements .\" -.TH IOPL 2 (date) "Linux man-pages (unreleased)" +.TH iopl 2 (date) "Linux man-pages (unreleased)" .SH NAME iopl \- change I/O privilege level .SH LIBRARY diff --git a/man2/ioprio_set.2 b/man2/ioprio_set.2 index dd3b4acb2b..ff1e72160e 100644 --- a/man2/ioprio_set.2 +++ b/man2/ioprio_set.2 @@ -7,7 +7,7 @@ .\" with various additions by Michael Kerrisk .\" .\" -.TH IOPRIO_SET 2 (date) "Linux man-pages (unreleased)" +.TH ioprio_set 2 (date) "Linux man-pages (unreleased)" .SH NAME ioprio_get, ioprio_set \- get/set I/O scheduling class and priority .SH LIBRARY diff --git a/man2/ipc.2 b/man2/ipc.2 index df265a0bf3..0be238af5e 100644 --- a/man2/ipc.2 +++ b/man2/ipc.2 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: GPL-2.0-or-later .\" .\" Modified Tue Oct 22 08:11:14 EDT 1996 by Eric S. Raymond -.TH IPC 2 (date) "Linux man-pages (unreleased)" +.TH ipc 2 (date) "Linux man-pages (unreleased)" .SH NAME ipc \- System V IPC system calls .SH LIBRARY diff --git a/man2/kcmp.2 b/man2/kcmp.2 index d3c8b7f7f6..f9b177f632 100644 --- a/man2/kcmp.2 +++ b/man2/kcmp.2 @@ -5,7 +5,7 @@ .\" .\" Kernel commit d97b46a64674a267bc41c9e16132ee2a98c3347d .\" -.TH KCMP 2 (date) "Linux man-pages (unreleased)" +.TH kcmp 2 (date) "Linux man-pages (unreleased)" .SH NAME kcmp \- compare two processes to determine if they share a kernel resource .SH LIBRARY diff --git a/man2/kexec_load.2 b/man2/kexec_load.2 index d8e0020fd1..b0cfb93654 100644 --- a/man2/kexec_load.2 +++ b/man2/kexec_load.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH KEXEC_LOAD 2 (date) "Linux man-pages (unreleased)" +.TH kexec_load 2 (date) "Linux man-pages (unreleased)" .SH NAME kexec_load, kexec_file_load \- load a new kernel for later execution .SH LIBRARY diff --git a/man2/keyctl.2 b/man2/keyctl.2 index 0aad89a626..0af1106a67 100644 --- a/man2/keyctl.2 +++ b/man2/keyctl.2 @@ -5,7 +5,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH KEYCTL 2 (date) "Linux man-pages (unreleased)" +.TH keyctl 2 (date) "Linux man-pages (unreleased)" .SH NAME keyctl \- manipulate the kernel's key management facility .SH LIBRARY diff --git a/man2/kill.2 b/man2/kill.2 index aa56321d1a..0c57a9fb61 100644 --- a/man2/kill.2 +++ b/man2/kill.2 @@ -21,7 +21,7 @@ .\" Modified 2004-06-24 by aeb .\" Modified, 2004-11-30, after idea from emmanuel.colbus@ensimag.imag.fr .\" -.TH KILL 2 (date) "Linux man-pages (unreleased)" +.TH kill 2 (date) "Linux man-pages (unreleased)" .SH NAME kill \- send signal to a process .SH LIBRARY diff --git a/man2/landlock_add_rule.2 b/man2/landlock_add_rule.2 index 449795b60b..4c37bafac6 100644 --- a/man2/landlock_add_rule.2 +++ b/man2/landlock_add_rule.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH LANDLOCK_ADD_RULE 2 (date) "Linux man-pages (unreleased)" +.TH landlock_add_rule 2 (date) "Linux man-pages (unreleased)" .SH NAME landlock_add_rule \- add a new Landlock rule to a ruleset .SH LIBRARY diff --git a/man2/landlock_create_ruleset.2 b/man2/landlock_create_ruleset.2 index cacbadfb40..ac79ab7887 100644 --- a/man2/landlock_create_ruleset.2 +++ b/man2/landlock_create_ruleset.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH LANDLOCK_CREATE_RULESET 2 (date) "Linux man-pages (unreleased)" +.TH landlock_create_ruleset 2 (date) "Linux man-pages (unreleased)" .SH NAME landlock_create_ruleset \- create a new Landlock ruleset .SH LIBRARY diff --git a/man2/landlock_restrict_self.2 b/man2/landlock_restrict_self.2 index e34e31c67c..1c41bb6109 100644 --- a/man2/landlock_restrict_self.2 +++ b/man2/landlock_restrict_self.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH LANDLOCK_RESTRICT_SELF 2 (date) "Linux man-pages (unreleased)" +.TH landlock_restrict_self 2 (date) "Linux man-pages (unreleased)" .SH NAME landlock_restrict_self \- enforce a Landlock ruleset .SH LIBRARY diff --git a/man2/link.2 b/man2/link.2 index 0bc3e24df4..774e23631e 100644 --- a/man2/link.2 +++ b/man2/link.2 @@ -9,7 +9,7 @@ .\" Modified 2004-06-23 by Michael Kerrisk .\" Modified 2005-04-04, as per suggestion by Michael Hardt for rename.2 .\" -.TH LINK 2 (date) "Linux man-pages (unreleased)" +.TH link 2 (date) "Linux man-pages (unreleased)" .SH NAME link, linkat \- make a new name for a file .SH LIBRARY diff --git a/man2/listen.2 b/man2/listen.2 index fb9908f039..e0a4fb9164 100644 --- a/man2/listen.2 +++ b/man2/listen.2 @@ -14,7 +14,7 @@ .\" Modified 11 May 2001 by Sam Varshavchik .\" .\" -.TH LISTEN 2 (date) "Linux man-pages (unreleased)" +.TH listen 2 (date) "Linux man-pages (unreleased)" .SH NAME listen \- listen for connections on a socket .SH LIBRARY diff --git a/man2/listxattr.2 b/man2/listxattr.2 index 928af04f2a..87b49ebb89 100644 --- a/man2/listxattr.2 +++ b/man2/listxattr.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH LISTXATTR 2 (date) "Linux man-pages (unreleased)" +.TH listxattr 2 (date) "Linux man-pages (unreleased)" .SH NAME listxattr, llistxattr, flistxattr \- list extended attribute names .SH LIBRARY diff --git a/man2/lookup_dcookie.2 b/man2/lookup_dcookie.2 index a03b0a2da7..54e4922e11 100644 --- a/man2/lookup_dcookie.2 +++ b/man2/lookup_dcookie.2 @@ -4,7 +4,7 @@ .\" .\" Modified 2004-06-17 Michael Kerrisk .\" -.TH LOOKUP_DCOOKIE 2 (date) "Linux man-pages (unreleased)" +.TH lookup_dcookie 2 (date) "Linux man-pages (unreleased)" .SH NAME lookup_dcookie \- return a directory entry's path .SH LIBRARY diff --git a/man2/lseek.2 b/man2/lseek.2 index f329f14484..2463a3e516 100644 --- a/man2/lseek.2 +++ b/man2/lseek.2 @@ -15,7 +15,7 @@ .\" Modified 2003-08-21 by Andries Brouwer .\" 2011-09-18, mtk, Added SEEK_DATA + SEEK_HOLE .\" -.TH LSEEK 2 (date) "Linux man-pages (unreleased)" +.TH lseek 2 (date) "Linux man-pages (unreleased)" .SH NAME lseek \- reposition read/write file offset .SH LIBRARY diff --git a/man2/madvise.2 b/man2/madvise.2 index e8f2035a04..001cb96df6 100644 --- a/man2/madvise.2 +++ b/man2/madvise.2 @@ -12,7 +12,7 @@ .\" 2011-09-18, Doug Goldstein .\" Document MADV_HUGEPAGE and MADV_NOHUGEPAGE .\" -.TH MADVISE 2 (date) "Linux man-pages (unreleased)" +.TH madvise 2 (date) "Linux man-pages (unreleased)" .SH NAME madvise \- give advice about use of memory .SH LIBRARY diff --git a/man2/mbind.2 b/man2/mbind.2 index ca5e9e0d87..532547e1a2 100644 --- a/man2/mbind.2 +++ b/man2/mbind.2 @@ -32,7 +32,7 @@ .\" Author: Lee Schermerhorn .\" Date: Thu Oct 25 14:16:32 2012 +0200 .\" -.TH MBIND 2 (date) "Linux man-pages (unreleased)" +.TH mbind 2 (date) "Linux man-pages (unreleased)" .SH NAME mbind \- set memory policy for a memory range .SH LIBRARY diff --git a/man2/membarrier.2 b/man2/membarrier.2 index c952917c38..076c65a331 100644 --- a/man2/membarrier.2 +++ b/man2/membarrier.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MEMBARRIER 2 (date) "Linux man-pages (unreleased)" +.TH membarrier 2 (date) "Linux man-pages (unreleased)" .SH NAME membarrier \- issue memory barriers on a set of threads .SH LIBRARY diff --git a/man2/memfd_create.2 b/man2/memfd_create.2 index af3d833bd3..3e3a57bf42 100644 --- a/man2/memfd_create.2 +++ b/man2/memfd_create.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH MEMFD_CREATE 2 (date) "Linux man-pages (unreleased)" +.TH memfd_create 2 (date) "Linux man-pages (unreleased)" .SH NAME memfd_create \- create an anonymous file .SH LIBRARY diff --git a/man2/memfd_secret.2 b/man2/memfd_secret.2 index 44860a6996..808c768688 100644 --- a/man2/memfd_secret.2 +++ b/man2/memfd_secret.2 @@ -7,7 +7,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH MEMFD_SECRET 2 (date) "Linux man-pages (unreleased)" +.TH memfd_secret 2 (date) "Linux man-pages (unreleased)" .SH NAME memfd_secret \- create an anonymous RAM-based file to access secret memory regions diff --git a/man2/migrate_pages.2 b/man2/migrate_pages.2 index f9b490dbb4..77cfdde352 100644 --- a/man2/migrate_pages.2 +++ b/man2/migrate_pages.2 @@ -15,7 +15,7 @@ .\" permission notice identical to this one. .\" %%%LICENSE_END .\" -.TH MIGRATE_PAGES 2 (date) "Linux man-pages (unreleased)" +.TH migrate_pages 2 (date) "Linux man-pages (unreleased)" .SH NAME migrate_pages \- move all pages in a process to another set of nodes .SH LIBRARY diff --git a/man2/mincore.2 b/man2/mincore.2 index 46745d564c..f8c240c6ed 100644 --- a/man2/mincore.2 +++ b/man2/mincore.2 @@ -11,7 +11,7 @@ .\" after message from .\" 2007-01-08 mtk, rewrote various parts .\" -.TH MINCORE 2 (date) "Linux man-pages (unreleased)" +.TH mincore 2 (date) "Linux man-pages (unreleased)" .SH NAME mincore \- determine whether pages are resident in memory .SH LIBRARY diff --git a/man2/mkdir.2 b/man2/mkdir.2 index 9b55973631..06a4367d37 100644 --- a/man2/mkdir.2 +++ b/man2/mkdir.2 @@ -5,7 +5,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH MKDIR 2 (date) "Linux man-pages (unreleased)" +.TH mkdir 2 (date) "Linux man-pages (unreleased)" .SH NAME mkdir, mkdirat \- create a directory .SH LIBRARY diff --git a/man2/mknod.2 b/man2/mknod.2 index e5630232a0..a8414deccf 100644 --- a/man2/mknod.2 +++ b/man2/mknod.2 @@ -9,7 +9,7 @@ .\" Modified 2003-04-23 by Michael Kerrisk .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH MKNOD 2 (date) "Linux man-pages (unreleased)" +.TH mknod 2 (date) "Linux man-pages (unreleased)" .SH NAME mknod, mknodat \- create a special or ordinary file .SH LIBRARY diff --git a/man2/mlock.2 b/man2/mlock.2 index bfcb97b651..9a6d04454a 100644 --- a/man2/mlock.2 +++ b/man2/mlock.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH MLOCK 2 (date) "Linux man-pages (unreleased)" +.TH mlock 2 (date) "Linux man-pages (unreleased)" .SH NAME mlock, mlock2, munlock, mlockall, munlockall \- lock and unlock memory .SH LIBRARY diff --git a/man2/mmap.2 b/man2/mmap.2 index 9c343f2167..87eb93d717 100644 --- a/man2/mmap.2 +++ b/man2/mmap.2 @@ -17,7 +17,7 @@ .\" 2007-07-10, mtk, Added an example program. .\" 2008-11-18, mtk, document MAP_STACK .\" -.TH MMAP 2 (date) "Linux man-pages (unreleased)" +.TH mmap 2 (date) "Linux man-pages (unreleased)" .SH NAME mmap, munmap \- map or unmap files or devices into memory .SH LIBRARY diff --git a/man2/mmap2.2 b/man2/mmap2.2 index ab8f24bb40..1c541d55be 100644 --- a/man2/mmap2.2 +++ b/man2/mmap2.2 @@ -6,7 +6,7 @@ .\" Added description of mmap2 .\" Modified, 2004-11-25, mtk -- removed stray #endif in prototype .\" -.TH MMAP2 2 (date) "Linux man-pages (unreleased)" +.TH mmap2 2 (date) "Linux man-pages (unreleased)" .SH NAME mmap2 \- map files or devices into memory .SH LIBRARY diff --git a/man2/modify_ldt.2 b/man2/modify_ldt.2 index b06687e307..7a0c6b7149 100644 --- a/man2/modify_ldt.2 +++ b/man2/modify_ldt.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH MODIFY_LDT 2 (date) "Linux man-pages (unreleased)" +.TH modify_ldt 2 (date) "Linux man-pages (unreleased)" .SH NAME modify_ldt \- get or set a per-process LDT entry .SH LIBRARY diff --git a/man2/mount.2 b/man2/mount.2 index 28a9a1ebb6..1ef0cdd068 100644 --- a/man2/mount.2 +++ b/man2/mount.2 @@ -17,7 +17,7 @@ .\" 2008-10-06, mtk: move umount*() material into separate umount.2 page. .\" 2008-10-06, mtk: Add discussion of namespaces. .\" -.TH MOUNT 2 (date) "Linux man-pages (unreleased)" +.TH mount 2 (date) "Linux man-pages (unreleased)" .SH NAME mount \- mount filesystem .SH LIBRARY diff --git a/man2/mount_setattr.2 b/man2/mount_setattr.2 index 696071947e..cfa1a6e5a3 100644 --- a/man2/mount_setattr.2 +++ b/man2/mount_setattr.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MOUNT_SETATTR 2 (date) "Linux man-pages (unreleased)" +.TH mount_setattr 2 (date) "Linux man-pages (unreleased)" .SH NAME mount_setattr \- change properties of a mount or mount tree .SH LIBRARY diff --git a/man2/move_pages.2 b/man2/move_pages.2 index 437e468b77..6a93ac8a1a 100644 --- a/man2/move_pages.2 +++ b/man2/move_pages.2 @@ -17,7 +17,7 @@ .\" (e.g., compare with recommendation in mbind(2)). .\" Does this page need to give advice on this topic? .\" -.TH MOVE_PAGES 2 (date) "Linux man-pages (unreleased)" +.TH move_pages 2 (date) "Linux man-pages (unreleased)" .SH NAME move_pages \- move individual pages of a process to another node .SH LIBRARY diff --git a/man2/mprotect.2 b/man2/mprotect.2 index 12b961a98d..debc6e8faa 100644 --- a/man2/mprotect.2 +++ b/man2/mprotect.2 @@ -10,7 +10,7 @@ .\" 2007-06-02, mtk: Fairly substantial rewrites and additions, and .\" a much improved example program. .\" -.TH MPROTECT 2 (date) "Linux man-pages (unreleased)" +.TH mprotect 2 (date) "Linux man-pages (unreleased)" .SH NAME mprotect, pkey_mprotect \- set protection on a region of memory .SH LIBRARY diff --git a/man2/mq_getsetattr.2 b/man2/mq_getsetattr.2 index eb55debb32..c53919c669 100644 --- a/man2/mq_getsetattr.2 +++ b/man2/mq_getsetattr.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MQ_GETSETATTR 2 (date) "Linux man-pages (unreleased)" +.TH mq_getsetattr 2 (date) "Linux man-pages (unreleased)" .SH NAME mq_getsetattr \- get/set message queue attributes .SH SYNOPSIS diff --git a/man2/mremap.2 b/man2/mremap.2 index 5ff3d0e366..fa3f60815e 100644 --- a/man2/mremap.2 +++ b/man2/mremap.2 @@ -8,7 +8,7 @@ .\" Update for Linux 1.3.87 and later .\" 2005-10-11 mtk: Added NOTES for MREMAP_FIXED; revised EINVAL text. .\" -.TH MREMAP 2 (date) "Linux man-pages (unreleased)" +.TH mremap 2 (date) "Linux man-pages (unreleased)" .SH NAME mremap \- remap a virtual memory address .SH LIBRARY diff --git a/man2/msgctl.2 b/man2/msgctl.2 index e78f3536f4..05c257837f 100644 --- a/man2/msgctl.2 +++ b/man2/msgctl.2 @@ -15,7 +15,7 @@ .\" 2005-08-02, mtk: Added IPC_INFO, MSG_INFO, MSG_STAT descriptions .\" 2018-03-20, dbueso: Added MSG_STAT_ANY description. .\" -.TH MSGCTL 2 (date) "Linux man-pages (unreleased)" +.TH msgctl 2 (date) "Linux man-pages (unreleased)" .SH NAME msgctl \- System V message control operations .SH LIBRARY diff --git a/man2/msgget.2 b/man2/msgget.2 index 76aeb5134b..24a50f3bbf 100644 --- a/man2/msgget.2 +++ b/man2/msgget.2 @@ -12,7 +12,7 @@ .\" Language and formatting clean-ups .\" Added notes on /proc files .\" -.TH MSGGET 2 (date) "Linux man-pages (unreleased)" +.TH msgget 2 (date) "Linux man-pages (unreleased)" .SH NAME msgget \- get a System V message queue identifier .SH LIBRARY diff --git a/man2/msync.2 b/man2/msync.2 index c38d998ff1..78b6d5c8ed 100644 --- a/man2/msync.2 +++ b/man2/msync.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MSYNC 2 (date) "Linux man-pages (unreleased)" +.TH msync 2 (date) "Linux man-pages (unreleased)" .SH NAME msync \- synchronize a file with a memory map .SH LIBRARY diff --git a/man2/nanosleep.2 b/man2/nanosleep.2 index a4d30adde1..63603971cd 100644 --- a/man2/nanosleep.2 +++ b/man2/nanosleep.2 @@ -12,7 +12,7 @@ .\" NOTES: describe case where clock_nanosleep() can be preferable. .\" NOTES: describe CLOCK_REALTIME versus CLOCK_NANOSLEEP .\" Replace crufty discussion of HZ with a pointer to time(7). -.TH NANOSLEEP 2 (date) "Linux man-pages (unreleased)" +.TH nanosleep 2 (date) "Linux man-pages (unreleased)" .SH NAME nanosleep \- high-resolution sleep .SH LIBRARY diff --git a/man2/nfsservctl.2 b/man2/nfsservctl.2 index e1042ab75a..4a893eb13a 100644 --- a/man2/nfsservctl.2 +++ b/man2/nfsservctl.2 @@ -2,7 +2,7 @@ .\" This text is in the public domain. .\" %%%LICENSE_END .\" -.TH NFSSERVCTL 2 (date) "Linux man-pages (unreleased)" +.TH nfsservctl 2 (date) "Linux man-pages (unreleased)" .SH NAME nfsservctl \- syscall interface to kernel nfs daemon .SH LIBRARY diff --git a/man2/nice.2 b/man2/nice.2 index 5c2659fbee..f4e2406991 100644 --- a/man2/nice.2 +++ b/man2/nice.2 @@ -8,7 +8,7 @@ .\" Modified 2001-06-04 by aeb .\" Modified 2004-05-27 by Michael Kerrisk .\" -.TH NICE 2 (date) "Linux man-pages (unreleased)" +.TH nice 2 (date) "Linux man-pages (unreleased)" .SH NAME nice \- change process priority .SH LIBRARY diff --git a/man2/open_by_handle_at.2 b/man2/open_by_handle_at.2 index 545063a1fd..1d10a9bdbe 100644 --- a/man2/open_by_handle_at.2 +++ b/man2/open_by_handle_at.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH OPEN_BY_HANDLE_AT 2 (date) "Linux man-pages (unreleased)" +.TH open_by_handle_at 2 (date) "Linux man-pages (unreleased)" .SH NAME name_to_handle_at, open_by_handle_at \- obtain handle for a pathname and open file via a handle diff --git a/man2/openat2.2 b/man2/openat2.2 index 810dd9674e..19693cd8c2 100644 --- a/man2/openat2.2 +++ b/man2/openat2.2 @@ -1,7 +1,7 @@ .\" Copyright (C) 2019 Aleksa Sarai .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft -.TH OPENAT2 2 (date) "Linux man-pages (unreleased)" +.TH openat2 2 (date) "Linux man-pages (unreleased)" .SH NAME openat2 \- open and possibly create a file (extended) .SH LIBRARY diff --git a/man2/outb.2 b/man2/outb.2 index 36332e1264..3746422645 100644 --- a/man2/outb.2 +++ b/man2/outb.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH OUTB 2 (date) "Linux man-pages (unreleased)" +.TH outb 2 (date) "Linux man-pages (unreleased)" .SH NAME outb, outw, outl, outsb, outsw, outsl, inb, inw, inl, insb, insw, insl, diff --git a/man2/pause.2 b/man2/pause.2 index 96eabfc851..1a4f3cb910 100644 --- a/man2/pause.2 +++ b/man2/pause.2 @@ -7,7 +7,7 @@ .\" Modified 1995 by Mike Battersby (mib@deakin.edu.au) .\" Modified 2000 by aeb, following Michael Kerrisk .\" -.TH PAUSE 2 (date) "Linux man-pages (unreleased)" +.TH pause 2 (date) "Linux man-pages (unreleased)" .SH NAME pause \- wait for signal .SH LIBRARY diff --git a/man2/pciconfig_read.2 b/man2/pciconfig_read.2 index f8488cb247..64de37f53b 100644 --- a/man2/pciconfig_read.2 +++ b/man2/pciconfig_read.2 @@ -5,7 +5,7 @@ .\" May be freely distributed and modified. .\" %%%LICENSE_END .\" -.TH PCICONFIG_READ 2 (date) "Linux man-pages (unreleased)" +.TH pciconfig_read 2 (date) "Linux man-pages (unreleased)" .SH NAME pciconfig_read, pciconfig_write, pciconfig_iobase \- pci device information handling diff --git a/man2/perf_event_open.2 b/man2/perf_event_open.2 index 45759a1478..2b7b19cb9b 100644 --- a/man2/perf_event_open.2 +++ b/man2/perf_event_open.2 @@ -5,7 +5,7 @@ .\" This document is based on the perf_event.h header file, the .\" tools/perf/design.txt file, and a lot of bitter experience. .\" -.TH PERF_EVENT_OPEN 2 (date) "Linux man-pages (unreleased)" +.TH perf_event_open 2 (date) "Linux man-pages (unreleased)" .SH NAME perf_event_open \- set up performance monitoring .SH LIBRARY diff --git a/man2/perfmonctl.2 b/man2/perfmonctl.2 index 132b4ba8b0..25ca916f72 100644 --- a/man2/perfmonctl.2 +++ b/man2/perfmonctl.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PERFMONCTL 2 (date) "Linux man-pages (unreleased)" +.TH perfmonctl 2 (date) "Linux man-pages (unreleased)" .SH NAME perfmonctl \- interface to IA-64 performance monitoring unit .SH SYNOPSIS diff --git a/man2/personality.2 b/man2/personality.2 index 6327f8cdfb..c2979ab876 100644 --- a/man2/personality.2 +++ b/man2/personality.2 @@ -10,7 +10,7 @@ .\" changed prototype, documented 0xffffffff, aeb, 030101 .\" Modified 2004-11-03 patch from Martin Schulze .\" -.TH PERSONALITY 2 (date) "Linux man-pages (unreleased)" +.TH personality 2 (date) "Linux man-pages (unreleased)" .SH NAME personality \- set the process execution domain .SH LIBRARY diff --git a/man2/pidfd_getfd.2 b/man2/pidfd_getfd.2 index 34f77a21d4..bc79fa658f 100644 --- a/man2/pidfd_getfd.2 +++ b/man2/pidfd_getfd.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PIDFD_GETFD 2 (date) "Linux man-pages (unreleased)" +.TH pidfd_getfd 2 (date) "Linux man-pages (unreleased)" .SH NAME pidfd_getfd \- obtain a duplicate of another process's file descriptor .SH LIBRARY diff --git a/man2/pidfd_open.2 b/man2/pidfd_open.2 index 4c9fdb1d63..a3e70c76c5 100644 --- a/man2/pidfd_open.2 +++ b/man2/pidfd_open.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PIDFD_OPEN 2 (date) "Linux man-pages (unreleased)" +.TH pidfd_open 2 (date) "Linux man-pages (unreleased)" .SH NAME pidfd_open \- obtain a file descriptor that refers to a process .SH LIBRARY diff --git a/man2/pidfd_send_signal.2 b/man2/pidfd_send_signal.2 index 5d2f66d908..93d0c90cf9 100644 --- a/man2/pidfd_send_signal.2 +++ b/man2/pidfd_send_signal.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PIDFD_SEND_SIGNAL 2 (date) "Linux man-pages (unreleased)" +.TH pidfd_send_signal 2 (date) "Linux man-pages (unreleased)" .SH NAME pidfd_send_signal \- send a signal to a process specified by a file descriptor .SH LIBRARY diff --git a/man2/pivot_root.2 b/man2/pivot_root.2 index 8d39d40221..a5ded5d581 100644 --- a/man2/pivot_root.2 +++ b/man2/pivot_root.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PIVOT_ROOT 2 (date) "Linux man-pages (unreleased)" +.TH pivot_root 2 (date) "Linux man-pages (unreleased)" .SH NAME pivot_root \- change the root mount .SH LIBRARY diff --git a/man2/pkey_alloc.2 b/man2/pkey_alloc.2 index 026607dbbe..24a83bce9f 100644 --- a/man2/pkey_alloc.2 +++ b/man2/pkey_alloc.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PKEY_ALLOC 2 (date) "Linux man-pages (unreleased)" +.TH pkey_alloc 2 (date) "Linux man-pages (unreleased)" .SH NAME pkey_alloc, pkey_free \- allocate or free a protection key .SH LIBRARY diff --git a/man2/poll.2 b/man2/poll.2 index 850228171c..0d67a6addb 100644 --- a/man2/poll.2 +++ b/man2/poll.2 @@ -7,7 +7,7 @@ .\" 2006-07-01, mtk, Added POLLRDHUP + various other wording and .\" formatting changes. .\" -.TH POLL 2 (date) "Linux man-pages (unreleased)" +.TH poll 2 (date) "Linux man-pages (unreleased)" .SH NAME poll, ppoll \- wait for some event on a file descriptor .SH LIBRARY diff --git a/man2/posix_fadvise.2 b/man2/posix_fadvise.2 index 7e07fa33c8..2ee2cf4bdb 100644 --- a/man2/posix_fadvise.2 +++ b/man2/posix_fadvise.2 @@ -6,7 +6,7 @@ .\" 2005-04-08 mtk, noted kernel version and added BUGS .\" 2010-10-09, mtk, document arm_fadvise64_64() .\" -.TH POSIX_FADVISE 2 (date) "Linux man-pages (unreleased)" +.TH posix_fadvise 2 (date) "Linux man-pages (unreleased)" .SH NAME posix_fadvise \- predeclare an access pattern for file data .SH LIBRARY diff --git a/man2/pread.2 b/man2/pread.2 index ec6595b1b2..30afd1c3d6 100644 --- a/man2/pread.2 +++ b/man2/pread.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PREAD 2 (date) "Linux man-pages (unreleased)" +.TH pread 2 (date) "Linux man-pages (unreleased)" .SH NAME pread, pwrite \- read from or write to a file descriptor at a given offset .SH LIBRARY diff --git a/man2/process_madvise.2 b/man2/process_madvise.2 index 6208206e46..0d9867b4d1 100644 --- a/man2/process_madvise.2 +++ b/man2/process_madvise.2 @@ -5,7 +5,7 @@ .\" .\" Commit ecb8ac8b1f146915aa6b96449b66dd48984caacc .\" -.TH PROCESS_MADVISE 2 (date) "Linux man-pages (unreleased)" +.TH process_madvise 2 (date) "Linux man-pages (unreleased)" .SH NAME process_madvise \- give advice about use of memory to a process .SH LIBRARY diff --git a/man2/process_vm_readv.2 b/man2/process_vm_readv.2 index 87777e1273..d2f468d526 100644 --- a/man2/process_vm_readv.2 +++ b/man2/process_vm_readv.2 @@ -6,7 +6,7 @@ .\" .\" Commit fcf634098c00dd9cd247447368495f0b79be12d1 .\" -.TH PROCESS_VM_READV 2 (date) "Linux man-pages (unreleased)" +.TH process_vm_readv 2 (date) "Linux man-pages (unreleased)" .SH NAME process_vm_readv, process_vm_writev \- transfer data between process address spaces diff --git a/man2/ptrace.2 b/man2/ptrace.2 index ab1714ba81..7737da5f9c 100644 --- a/man2/ptrace.2 +++ b/man2/ptrace.2 @@ -83,7 +83,7 @@ .\" .\" and others that can be found in the arch/*/include/uapi/asm/ptrace files .\" -.TH PTRACE 2 (date) "Linux man-pages (unreleased)" +.TH ptrace 2 (date) "Linux man-pages (unreleased)" .SH NAME ptrace \- process trace .SH LIBRARY diff --git a/man2/query_module.2 b/man2/query_module.2 index 121d0a5da9..61dcdd9101 100644 --- a/man2/query_module.2 +++ b/man2/query_module.2 @@ -5,7 +5,7 @@ .\" 2006-02-09, some reformatting by Luc Van Oostenryck; some .\" reformatting and rewordings by mtk .\" -.TH QUERY_MODULE 2 (date) "Linux man-pages (unreleased)" +.TH query_module 2 (date) "Linux man-pages (unreleased)" .SH NAME query_module \- query the kernel for various bits pertaining to modules .SH SYNOPSIS diff --git a/man2/quotactl.2 b/man2/quotactl.2 index b97f4175b2..e5c6a5ea61 100644 --- a/man2/quotactl.2 +++ b/man2/quotactl.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH QUOTACTL 2 (date) "Linux man-pages (unreleased)" +.TH quotactl 2 (date) "Linux man-pages (unreleased)" .SH NAME quotactl \- manipulate disk quotas .SH LIBRARY diff --git a/man2/read.2 b/man2/read.2 index 5a44d95904..0482508583 100644 --- a/man2/read.2 +++ b/man2/read.2 @@ -13,7 +13,7 @@ .\" Modified Sat Jul 12 20:45:39 1997 by Michael Haardt .\" .\" -.TH READ 2 (date) "Linux man-pages (unreleased)" +.TH read 2 (date) "Linux man-pages (unreleased)" .SH NAME read \- read from a file descriptor .SH LIBRARY diff --git a/man2/readahead.2 b/man2/readahead.2 index 36059ab3a6..6021398717 100644 --- a/man2/readahead.2 +++ b/man2/readahead.2 @@ -5,7 +5,7 @@ .\" 2004-05-40 Created by Michael Kerrisk .\" 2004-10-05 aeb, minor correction .\" -.TH READAHEAD 2 (date) "Linux man-pages (unreleased)" +.TH readahead 2 (date) "Linux man-pages (unreleased)" .SH NAME readahead \- initiate file readahead into page cache .SH LIBRARY diff --git a/man2/readdir.2 b/man2/readdir.2 index 940eeb52e1..8c85d1ef0c 100644 --- a/man2/readdir.2 +++ b/man2/readdir.2 @@ -7,7 +7,7 @@ .\" In 1.3.X, returns only one entry each time; return value is different. .\" Modified 2004-12-01, mtk, fixed headers listed in SYNOPSIS .\" -.TH READDIR 2 (date) "Linux man-pages (unreleased)" +.TH readdir 2 (date) "Linux man-pages (unreleased)" .SH NAME readdir \- read directory entry .SH LIBRARY diff --git a/man2/readlink.2 b/man2/readlink.2 index 9bb17a2f1f..05aa56bcb3 100644 --- a/man2/readlink.2 +++ b/man2/readlink.2 @@ -13,7 +13,7 @@ .\" 2011-09-20, Guillem Jover : .\" Added text on dynamically allocating buffer + example program .\" -.TH READLINK 2 (date) "Linux man-pages (unreleased)" +.TH readlink 2 (date) "Linux man-pages (unreleased)" .SH NAME readlink, readlinkat \- read value of a symbolic link .SH LIBRARY diff --git a/man2/readv.2 b/man2/readv.2 index f1dfa0c98d..90e24654ff 100644 --- a/man2/readv.2 +++ b/man2/readv.2 @@ -9,7 +9,7 @@ .\" add more details. .\" 2010-11-16, mtk, Added documentation of preadv() and pwritev() .\" -.TH READV 2 (date) "Linux man-pages (unreleased)" +.TH readv 2 (date) "Linux man-pages (unreleased)" .SH NAME readv, writev, preadv, pwritev, preadv2, pwritev2 \- read or write data into multiple buffers diff --git a/man2/reboot.2 b/man2/reboot.2 index d3e39922a4..3f7cee8f63 100644 --- a/man2/reboot.2 +++ b/man2/reboot.2 @@ -5,7 +5,7 @@ .\" Modified, 27 May 2004, Michael Kerrisk .\" Added notes on capability requirements .\" -.TH REBOOT 2 (date) "Linux man-pages (unreleased)" +.TH reboot 2 (date) "Linux man-pages (unreleased)" .SH NAME reboot \- reboot or enable/disable Ctrl-Alt-Del .SH LIBRARY diff --git a/man2/recv.2 b/man2/recv.2 index f8d7a5386c..1bb19e5611 100644 --- a/man2/recv.2 +++ b/man2/recv.2 @@ -10,7 +10,7 @@ .\" Modified 1998,1999 by Andi Kleen .\" 2001-06-19 corrected SO_EE_OFFENDER, bug report by James Hawtin .\" -.TH RECV 2 (date) "Linux man-pages (unreleased)" +.TH recv 2 (date) "Linux man-pages (unreleased)" .SH NAME recv, recvfrom, recvmsg \- receive a message from a socket .SH LIBRARY diff --git a/man2/recvmmsg.2 b/man2/recvmmsg.2 index a8d715ebc3..eea0c99494 100644 --- a/man2/recvmmsg.2 +++ b/man2/recvmmsg.2 @@ -8,7 +8,7 @@ .\" Author: Arnaldo Carvalho de Melo .\" Date: Mon Oct 12 23:40:10 2009 -0700 .\" -.TH RECVMMSG 2 (date) "Linux man-pages (unreleased)" +.TH recvmmsg 2 (date) "Linux man-pages (unreleased)" .SH NAME recvmmsg \- receive multiple messages on a socket .SH LIBRARY diff --git a/man2/remap_file_pages.2 b/man2/remap_file_pages.2 index 41b2301393..4a01e938af 100644 --- a/man2/remap_file_pages.2 +++ b/man2/remap_file_pages.2 @@ -5,7 +5,7 @@ .\" 2003-12-10 Initial creation, Michael Kerrisk .\" 2004-10-28 aeb, corrected prototype, prot must be 0 .\" -.TH REMAP_FILE_PAGES 2 (date) "Linux man-pages (unreleased)" +.TH remap_file_pages 2 (date) "Linux man-pages (unreleased)" .SH NAME remap_file_pages \- create a nonlinear file mapping .SH LIBRARY diff --git a/man2/removexattr.2 b/man2/removexattr.2 index d6f77ad9af..e4adef15bf 100644 --- a/man2/removexattr.2 +++ b/man2/removexattr.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH REMOVEXATTR 2 (date) "Linux man-pages (unreleased)" +.TH removexattr 2 (date) "Linux man-pages (unreleased)" .SH NAME removexattr, lremovexattr, fremovexattr \- remove an extended attribute .SH LIBRARY diff --git a/man2/rename.2 b/man2/rename.2 index a27c9fdc3f..a912bbf387 100644 --- a/man2/rename.2 +++ b/man2/rename.2 @@ -10,7 +10,7 @@ .\" Modified Thu Mar 3 09:49:35 2005 by Michael Haardt .\" 2007-03-25, mtk, added various text to DESCRIPTION. .\" -.TH RENAME 2 (date) "Linux man-pages (unreleased)" +.TH rename 2 (date) "Linux man-pages (unreleased)" .SH NAME rename, renameat, renameat2 \- change the name or location of a file .SH LIBRARY diff --git a/man2/request_key.2 b/man2/request_key.2 index 3002f508b0..78493b6408 100644 --- a/man2/request_key.2 +++ b/man2/request_key.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH REQUEST_KEY 2 (date) "Linux man-pages (unreleased)" +.TH request_key 2 (date) "Linux man-pages (unreleased)" .SH NAME request_key \- request a key from the kernel's key management facility .SH LIBRARY diff --git a/man2/restart_syscall.2 b/man2/restart_syscall.2 index 844f4fd967..739067ceaf 100644 --- a/man2/restart_syscall.2 +++ b/man2/restart_syscall.2 @@ -10,7 +10,7 @@ .\" .\" See also Section 11.3.3 of Understanding the Linux Kernel, 3rd edition .\" -.TH RESTART_SYSCALL 2 (date) "Linux man-pages (unreleased)" +.TH restart_syscall 2 (date) "Linux man-pages (unreleased)" .SH NAME restart_syscall \- restart a system call after interruption by a stop signal .SH SYNOPSIS diff --git a/man2/rmdir.2 b/man2/rmdir.2 index eaa8550ca7..b06349e2c1 100644 --- a/man2/rmdir.2 +++ b/man2/rmdir.2 @@ -7,7 +7,7 @@ .\" Modified 1997-01-31 by Eric S. Raymond .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH RMDIR 2 (date) "Linux man-pages (unreleased)" +.TH rmdir 2 (date) "Linux man-pages (unreleased)" .SH NAME rmdir \- delete a directory .SH LIBRARY diff --git a/man2/rt_sigqueueinfo.2 b/man2/rt_sigqueueinfo.2 index b7884e21a8..4e65946b93 100644 --- a/man2/rt_sigqueueinfo.2 +++ b/man2/rt_sigqueueinfo.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH RT_SIGQUEUEINFO 2 (date) "Linux man-pages (unreleased)" +.TH rt_sigqueueinfo 2 (date) "Linux man-pages (unreleased)" .SH NAME rt_sigqueueinfo, rt_tgsigqueueinfo \- queue a signal and data .SH LIBRARY diff --git a/man2/s390_guarded_storage.2 b/man2/s390_guarded_storage.2 index 0c89fdb5e4..678de36e9f 100644 --- a/man2/s390_guarded_storage.2 +++ b/man2/s390_guarded_storage.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH S390_GUARDED_STORAGE 2 (date) "Linux man-pages (unreleased)" +.TH s390_guarded_storage 2 (date) "Linux man-pages (unreleased)" .SH NAME s390_guarded_storage \- operations with z/Architecture guarded storage facility .SH LIBRARY diff --git a/man2/s390_pci_mmio_write.2 b/man2/s390_pci_mmio_write.2 index 1c94a2a89a..bd366fab25 100644 --- a/man2/s390_pci_mmio_write.2 +++ b/man2/s390_pci_mmio_write.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH S390_PCI_MMIO_WRITE 2 (date) "Linux man-pages (unreleased)" +.TH s390_pci_mmio_write 2 (date) "Linux man-pages (unreleased)" .SH NAME s390_pci_mmio_write, s390_pci_mmio_read \- transfer data to/from PCI MMIO memory page diff --git a/man2/s390_runtime_instr.2 b/man2/s390_runtime_instr.2 index dda8da6079..575d8c138c 100644 --- a/man2/s390_runtime_instr.2 +++ b/man2/s390_runtime_instr.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH S390_RUNTIME_INSTR 2 (date) "Linux man-pages (unreleased)" +.TH s390_runtime_instr 2 (date) "Linux man-pages (unreleased)" .SH NAME s390_runtime_instr \- enable/disable s390 CPU run-time instrumentation .SH LIBRARY diff --git a/man2/s390_sthyi.2 b/man2/s390_sthyi.2 index 547de57a35..b44d940bcd 100644 --- a/man2/s390_sthyi.2 +++ b/man2/s390_sthyi.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH S390_STHYI 2 (date) "Linux man-pages (unreleased)" +.TH s390_sthyi 2 (date) "Linux man-pages (unreleased)" .SH NAME s390_sthyi \- emulate STHYI instruction .SH LIBRARY diff --git a/man2/sched_get_priority_max.2 b/man2/sched_get_priority_max.2 index 13c1dfb503..70922ee3bc 100644 --- a/man2/sched_get_priority_max.2 +++ b/man2/sched_get_priority_max.2 @@ -7,7 +7,7 @@ .\" 1996-04-10 Markus Kuhn .\" revision .\" -.TH SCHED_GET_PRIORITY_MAX 2 (date) "Linux man-pages (unreleased)" +.TH sched_get_priority_max 2 (date) "Linux man-pages (unreleased)" .SH NAME sched_get_priority_max, sched_get_priority_min \- get static priority range .SH LIBRARY diff --git a/man2/sched_rr_get_interval.2 b/man2/sched_rr_get_interval.2 index 2f27ca90e3..be2a246ab7 100644 --- a/man2/sched_rr_get_interval.2 +++ b/man2/sched_rr_get_interval.2 @@ -7,7 +7,7 @@ .\" 1996-04-10 Markus Kuhn .\" revision .\" -.TH SCHED_RR_GET_INTERVAL 2 (date) "Linux man-pages (unreleased)" +.TH sched_rr_get_interval 2 (date) "Linux man-pages (unreleased)" .SH NAME sched_rr_get_interval \- get the SCHED_RR interval for the named process .SH LIBRARY diff --git a/man2/sched_setaffinity.2 b/man2/sched_setaffinity.2 index eb5c7f00f6..a2d7a264ac 100644 --- a/man2/sched_setaffinity.2 +++ b/man2/sched_setaffinity.2 @@ -12,7 +12,7 @@ .\" 2008-11-12, mtk, removed CPU_*() macro descriptions to a .\" separate CPU_SET(3) page. .\" -.TH SCHED_SETAFFINITY 2 (date) "Linux man-pages (unreleased)" +.TH sched_setaffinity 2 (date) "Linux man-pages (unreleased)" .SH NAME sched_setaffinity, sched_getaffinity \- \ set and get a thread's CPU affinity mask diff --git a/man2/sched_setattr.2 b/man2/sched_setattr.2 index 958bb2d256..64fd7d4f60 100644 --- a/man2/sched_setattr.2 +++ b/man2/sched_setattr.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SCHED_SETATTR 2 (date) "Linux man-pages (unreleased)" +.TH sched_setattr 2 (date) "Linux man-pages (unreleased)" .SH NAME sched_setattr, sched_getattr \- set and get scheduling policy and attributes diff --git a/man2/sched_setparam.2 b/man2/sched_setparam.2 index 139fcb555c..25d7b580bb 100644 --- a/man2/sched_setparam.2 +++ b/man2/sched_setparam.2 @@ -8,7 +8,7 @@ .\" revision .\" Modified 2004-05-27 by Michael Kerrisk .\" -.TH SCHED_SETPARAM 2 (date) "Linux man-pages (unreleased)" +.TH sched_setparam 2 (date) "Linux man-pages (unreleased)" .SH NAME sched_setparam, sched_getparam \- set and get scheduling parameters .SH LIBRARY diff --git a/man2/sched_setscheduler.2 b/man2/sched_setscheduler.2 index 41d5733b1a..19a1f040f1 100644 --- a/man2/sched_setscheduler.2 +++ b/man2/sched_setscheduler.2 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH SCHED_SETSCHEDULER 2 (date) "Linux man-pages (unreleased)" +.TH sched_setscheduler 2 (date) "Linux man-pages (unreleased)" .SH NAME sched_setscheduler, sched_getscheduler \- set and get scheduling policy/parameters diff --git a/man2/sched_yield.2 b/man2/sched_yield.2 index c902789363..b58448a09a 100644 --- a/man2/sched_yield.2 +++ b/man2/sched_yield.2 @@ -7,7 +7,7 @@ .\" 1996-04-10 Markus Kuhn .\" revision .\" -.TH SCHED_YIELD 2 (date) "Linux man-pages (unreleased)" +.TH sched_yield 2 (date) "Linux man-pages (unreleased)" .SH NAME sched_yield \- yield the processor .SH LIBRARY diff --git a/man2/seccomp.2 b/man2/seccomp.2 index aa69b5c0b3..80843b4815 100644 --- a/man2/seccomp.2 +++ b/man2/seccomp.2 @@ -6,7 +6,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SECCOMP 2 (date) "Linux man-pages (unreleased)" +.TH seccomp 2 (date) "Linux man-pages (unreleased)" .SH NAME seccomp \- operate on Secure Computing state of the process .SH LIBRARY diff --git a/man2/seccomp_unotify.2 b/man2/seccomp_unotify.2 index 80db1b154e..157fbb94af 100644 --- a/man2/seccomp_unotify.2 +++ b/man2/seccomp_unotify.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SECCOMP_UNOTIFY 2 (date) "Linux man-pages (unreleased)" +.TH seccomp_unotify 2 (date) "Linux man-pages (unreleased)" .SH NAME seccomp_unotify \- Seccomp user-space notification mechanism .SH LIBRARY diff --git a/man2/select.2 b/man2/select.2 index e0f1580bd9..199522a013 100644 --- a/man2/select.2 +++ b/man2/select.2 @@ -17,7 +17,7 @@ .\" 2005-03-11, mtk, modified pselect() text (it is now a system .\" call in 2.6.16. .\" -.TH SELECT 2 (date) "Linux man-pages (unreleased)" +.TH select 2 (date) "Linux man-pages (unreleased)" .SH NAME select, pselect, FD_CLR, FD_ISSET, FD_SET, FD_ZERO, fd_set \- synchronous I/O multiplexing diff --git a/man2/semctl.2 b/man2/semctl.2 index 9edd0eb417..e95c932914 100644 --- a/man2/semctl.2 +++ b/man2/semctl.2 @@ -19,7 +19,7 @@ .\" 2005-08-02, mtk: Added IPC_INFO, SEM_INFO, SEM_STAT descriptions. .\" 2018-03-20, dbueso: Added SEM_STAT_ANY description. .\" -.TH SEMCTL 2 (date) "Linux man-pages (unreleased)" +.TH semctl 2 (date) "Linux man-pages (unreleased)" .SH NAME semctl \- System V semaphore control operations .SH LIBRARY diff --git a/man2/semget.2 b/man2/semget.2 index ea6ae6d7e1..277cc0e20d 100644 --- a/man2/semget.2 +++ b/man2/semget.2 @@ -14,7 +14,7 @@ .\" Rewrote BUGS note about semget()'s failure to initialize .\" semaphore values .\" -.TH SEMGET 2 (date) "Linux man-pages (unreleased)" +.TH semget 2 (date) "Linux man-pages (unreleased)" .SH NAME semget \- get a System V semaphore set identifier .SH LIBRARY diff --git a/man2/semop.2 b/man2/semop.2 index 986a32741a..ebe37a55cc 100644 --- a/man2/semop.2 +++ b/man2/semop.2 @@ -12,7 +12,7 @@ .\" 2005-04-08, mtk, Noted kernel version numbers for semtimedop() .\" 2007-07-09, mtk, Added an EXAMPLE code segment. .\" -.TH SEMOP 2 (date) "Linux man-pages (unreleased)" +.TH semop 2 (date) "Linux man-pages (unreleased)" .SH NAME semop, semtimedop \- System V semaphore operations .SH LIBRARY diff --git a/man2/send.2 b/man2/send.2 index 1dd8486aa7..1d8ea7ac7e 100644 --- a/man2/send.2 +++ b/man2/send.2 @@ -9,7 +9,7 @@ .\" Modified Oct 2003 by aeb .\" Modified 2004-07-01 by mtk .\" -.TH SEND 2 (date) "Linux man-pages (unreleased)" +.TH send 2 (date) "Linux man-pages (unreleased)" .SH NAME send, sendto, sendmsg \- send a message on a socket .SH LIBRARY diff --git a/man2/sendfile.2 b/man2/sendfile.2 index a00a77f7ab..2ecbdbbb7e 100644 --- a/man2/sendfile.2 +++ b/man2/sendfile.2 @@ -16,7 +16,7 @@ .\" .\" 2005-03-31 Martin Pool mmap() improvements .\" -.TH SENDFILE 2 (date) "Linux man-pages (unreleased)" +.TH sendfile 2 (date) "Linux man-pages (unreleased)" .SH NAME sendfile \- transfer data between file descriptors .SH LIBRARY diff --git a/man2/sendmmsg.2 b/man2/sendmmsg.2 index 17acabb46f..f2c77444e7 100644 --- a/man2/sendmmsg.2 +++ b/man2/sendmmsg.2 @@ -5,7 +5,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SENDMMSG 2 (date) "Linux man-pages (unreleased)" +.TH sendmmsg 2 (date) "Linux man-pages (unreleased)" .SH NAME sendmmsg \- send multiple messages on a socket .SH LIBRARY diff --git a/man2/set_mempolicy.2 b/man2/set_mempolicy.2 index 09415cfed0..6a90c2b449 100644 --- a/man2/set_mempolicy.2 +++ b/man2/set_mempolicy.2 @@ -24,7 +24,7 @@ .\" 2007-08-27, Lee Schermerhorn .\" more precise specification of behavior. .\" -.TH SET_MEMPOLICY 2 (date) "Linux man-pages (unreleased)" +.TH set_mempolicy 2 (date) "Linux man-pages (unreleased)" .SH NAME set_mempolicy \- set default NUMA memory policy for a thread and its children .SH LIBRARY diff --git a/man2/set_thread_area.2 b/man2/set_thread_area.2 index adea67ddbe..ccfacc70dd 100644 --- a/man2/set_thread_area.2 +++ b/man2/set_thread_area.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH SET_THREAD_AREA 2 (date) "Linux man-pages (unreleased)" +.TH set_thread_area 2 (date) "Linux man-pages (unreleased)" .SH NAME get_thread_area, set_thread_area \- manipulate thread-local storage information .SH LIBRARY diff --git a/man2/set_tid_address.2 b/man2/set_tid_address.2 index 3d5306fe7e..a766d5bef5 100644 --- a/man2/set_tid_address.2 +++ b/man2/set_tid_address.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SET_TID_ADDRESS 2 (date) "Linux man-pages (unreleased)" +.TH set_tid_address 2 (date) "Linux man-pages (unreleased)" .SH NAME set_tid_address \- set pointer to thread ID .SH LIBRARY diff --git a/man2/seteuid.2 b/man2/seteuid.2 index c60cb0154a..df144439d0 100644 --- a/man2/seteuid.2 +++ b/man2/seteuid.2 @@ -6,7 +6,7 @@ .\" Modified, 27 May 2004, Michael Kerrisk .\" Added notes on capability requirements .\" -.TH SETEUID 2 (date) "Linux man-pages (unreleased)" +.TH seteuid 2 (date) "Linux man-pages (unreleased)" .SH NAME seteuid, setegid \- set effective user or group ID .SH LIBRARY diff --git a/man2/setfsgid.2 b/man2/setfsgid.2 index 071be8f6e7..0b5bb5c035 100644 --- a/man2/setfsgid.2 +++ b/man2/setfsgid.2 @@ -9,7 +9,7 @@ .\" Modified, 27 May 2004, Michael Kerrisk .\" Added notes on capability requirements .\" -.TH SETFSGID 2 (date) "Linux man-pages (unreleased)" +.TH setfsgid 2 (date) "Linux man-pages (unreleased)" .SH NAME setfsgid \- set group identity used for filesystem checks .SH LIBRARY diff --git a/man2/setfsuid.2 b/man2/setfsuid.2 index ecd2f9dcac..f908f6ac9e 100644 --- a/man2/setfsuid.2 +++ b/man2/setfsuid.2 @@ -9,7 +9,7 @@ .\" Modified, 27 May 2004, Michael Kerrisk .\" Added notes on capability requirements .\" -.TH SETFSUID 2 (date) "Linux man-pages (unreleased)" +.TH setfsuid 2 (date) "Linux man-pages (unreleased)" .SH NAME setfsuid \- set user identity used for filesystem checks .SH LIBRARY diff --git a/man2/setgid.2 b/man2/setgid.2 index f960f5d042..1e14a7271a 100644 --- a/man2/setgid.2 +++ b/man2/setgid.2 @@ -7,7 +7,7 @@ .\" Modified 1997-01-31 by Eric S. Raymond .\" Modified 2002-03-09 by aeb .\" -.TH SETGID 2 (date) "Linux man-pages (unreleased)" +.TH setgid 2 (date) "Linux man-pages (unreleased)" .SH NAME setgid \- set group identity .SH LIBRARY diff --git a/man2/setns.2 b/man2/setns.2 index d23e2a9228..f8ed48a668 100644 --- a/man2/setns.2 +++ b/man2/setns.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-only .\" -.TH SETNS 2 (date) "Linux man-pages (unreleased)" +.TH setns 2 (date) "Linux man-pages (unreleased)" .SH NAME setns \- reassociate thread with a namespace .SH LIBRARY diff --git a/man2/setpgid.2 b/man2/setpgid.2 index 3569a4748b..b3ddc94b72 100644 --- a/man2/setpgid.2 +++ b/man2/setpgid.2 @@ -17,7 +17,7 @@ .\" 2007-07-25, mtk, fairly substantial rewrites and rearrangements .\" of text. .\" -.TH SETPGID 2 (date) "Linux man-pages (unreleased)" +.TH setpgid 2 (date) "Linux man-pages (unreleased)" .SH NAME setpgid, getpgid, setpgrp, getpgrp \- set/get process group .SH LIBRARY diff --git a/man2/setresuid.2 b/man2/setresuid.2 index 81b2361956..cf1d176b7e 100644 --- a/man2/setresuid.2 +++ b/man2/setresuid.2 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" Modified, 2003-05-26, Michael Kerrisk, -.TH SETRESUID 2 (date) "Linux man-pages (unreleased)" +.TH setresuid 2 (date) "Linux man-pages (unreleased)" .SH NAME setresuid, setresgid \- set real, effective, and saved user or group ID .SH LIBRARY diff --git a/man2/setreuid.2 b/man2/setreuid.2 index 0fa2575abb..510c0606e5 100644 --- a/man2/setreuid.2 +++ b/man2/setreuid.2 @@ -15,7 +15,7 @@ .\" 2004-07-04 by aeb .\" 2004-05-27 by Michael Kerrisk .\" -.TH SETREUID 2 (date) "Linux man-pages (unreleased)" +.TH setreuid 2 (date) "Linux man-pages (unreleased)" .SH NAME setreuid, setregid \- set real and/or effective user or group ID .SH LIBRARY diff --git a/man2/setsid.2 b/man2/setsid.2 index db0c4ed02c..493e3567b2 100644 --- a/man2/setsid.2 +++ b/man2/setsid.2 @@ -9,7 +9,7 @@ .\" tiny changes from a man page by Charles Livingston). .\" Modified Sun Jul 21 14:45:46 1996 .\" -.TH SETSID 2 (date) "Linux man-pages (unreleased)" +.TH setsid 2 (date) "Linux man-pages (unreleased)" .SH NAME setsid \- creates a session and sets the process group ID .SH LIBRARY diff --git a/man2/setuid.2 b/man2/setuid.2 index 9308269947..6293ddd15e 100644 --- a/man2/setuid.2 +++ b/man2/setuid.2 @@ -8,7 +8,7 @@ .\" , aeb 970616. .\" Modified, 27 May 2004, Michael Kerrisk .\" Added notes on capability requirements -.TH SETUID 2 (date) "Linux man-pages (unreleased)" +.TH setuid 2 (date) "Linux man-pages (unreleased)" .SH NAME setuid \- set user identity .SH LIBRARY diff --git a/man2/setup.2 b/man2/setup.2 index 0a81f8056f..a8c94c4b2c 100644 --- a/man2/setup.2 +++ b/man2/setup.2 @@ -11,7 +11,7 @@ .\" Modified Wed Nov 6 04:05:28 1996 by Eric S. Raymond .\" Modified Sat Jan 29 01:08:23 2000 by aeb .\" -.TH SETUP 2 (date) "Linux man-pages (unreleased)" +.TH setup 2 (date) "Linux man-pages (unreleased)" .SH NAME setup \- setup devices and filesystems, mount root filesystem .SH LIBRARY diff --git a/man2/setxattr.2 b/man2/setxattr.2 index d20b669b0c..64c57281ac 100644 --- a/man2/setxattr.2 +++ b/man2/setxattr.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH SETXATTR 2 (date) "Linux man-pages (unreleased)" +.TH setxattr 2 (date) "Linux man-pages (unreleased)" .SH NAME setxattr, lsetxattr, fsetxattr \- set an extended attribute value .SH LIBRARY diff --git a/man2/sgetmask.2 b/man2/sgetmask.2 index f91d0b6ac2..d342076db6 100644 --- a/man2/sgetmask.2 +++ b/man2/sgetmask.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SGETMASK 2 (date) "Linux man-pages (unreleased)" +.TH sgetmask 2 (date) "Linux man-pages (unreleased)" .SH NAME sgetmask, ssetmask \- manipulation of signal mask (obsolete) .SH LIBRARY diff --git a/man2/shmctl.2 b/man2/shmctl.2 index adbadb59c0..329007f9cc 100644 --- a/man2/shmctl.2 +++ b/man2/shmctl.2 @@ -23,7 +23,7 @@ .\" 2005-08-02, mtk: Added IPC_INFO, SHM_INFO, SHM_STAT descriptions. .\" 2018-03-20, dbueso: Added SHM_STAT_ANY description. .\" -.TH SHMCTL 2 (date) "Linux man-pages (unreleased)" +.TH shmctl 2 (date) "Linux man-pages (unreleased)" .SH NAME shmctl \- System V shared memory control .SH LIBRARY diff --git a/man2/shmget.2 b/man2/shmget.2 index 73334e9745..83447aaba9 100644 --- a/man2/shmget.2 +++ b/man2/shmget.2 @@ -15,7 +15,7 @@ .\" Language and formatting clean-ups .\" Added notes on /proc files .\" -.TH SHMGET 2 (date) "Linux man-pages (unreleased)" +.TH shmget 2 (date) "Linux man-pages (unreleased)" .SH NAME shmget \- allocates a System V shared memory segment .SH LIBRARY diff --git a/man2/shutdown.2 b/man2/shutdown.2 index 63f3f2890c..82411180b9 100644 --- a/man2/shutdown.2 +++ b/man2/shutdown.2 @@ -9,7 +9,7 @@ .\" Modified Tue Oct 22 22:04:51 1996 by Eric S. Raymond .\" Modified 1998 by Andi Kleen .\" -.TH SHUTDOWN 2 (date) "Linux man-pages (unreleased)" +.TH shutdown 2 (date) "Linux man-pages (unreleased)" .SH NAME shutdown \- shut down part of a full-duplex connection .SH LIBRARY diff --git a/man2/sigaction.2 b/man2/sigaction.2 index fcade7dbd2..d43f9b0d0a 100644 --- a/man2/sigaction.2 +++ b/man2/sigaction.2 @@ -25,7 +25,7 @@ .\" 2015-01-17, Kees Cook .\" Added notes on ptrace SIGTRAP and SYS_SECCOMP. .\" -.TH SIGACTION 2 (date) "Linux man-pages (unreleased)" +.TH sigaction 2 (date) "Linux man-pages (unreleased)" .SH NAME sigaction, rt_sigaction \- examine and change a signal action .SH LIBRARY diff --git a/man2/sigaltstack.2 b/man2/sigaltstack.2 index 7552d55929..ca41491ebd 100644 --- a/man2/sigaltstack.2 +++ b/man2/sigaltstack.2 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" aeb, various minor fixes -.TH SIGALTSTACK 2 (date) "Linux man-pages (unreleased)" +.TH sigaltstack 2 (date) "Linux man-pages (unreleased)" .SH NAME sigaltstack \- set and/or get signal stack context .SH LIBRARY diff --git a/man2/signal.2 b/man2/signal.2 index eb59a0cfcd..2bb05cd898 100644 --- a/man2/signal.2 +++ b/man2/signal.2 @@ -13,7 +13,7 @@ .\" various sections. .\" 2008-07-11, mtk: rewrote and expanded portability discussion. .\" -.TH SIGNAL 2 (date) "Linux man-pages (unreleased)" +.TH signal 2 (date) "Linux man-pages (unreleased)" .SH NAME signal \- ANSI C signal handling .SH LIBRARY diff --git a/man2/signalfd.2 b/man2/signalfd.2 index 9f3068c5a3..e72ddea279 100644 --- a/man2/signalfd.2 +++ b/man2/signalfd.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH SIGNALFD 2 (date) "Linux man-pages (unreleased)" +.TH signalfd 2 (date) "Linux man-pages (unreleased)" .SH NAME signalfd \- create a file descriptor for accepting signals .SH LIBRARY diff --git a/man2/sigpending.2 b/man2/sigpending.2 index 0d4e369fc9..8c655ef974 100644 --- a/man2/sigpending.2 +++ b/man2/sigpending.2 @@ -6,7 +6,7 @@ .\" .\" 2005-09-15, mtk, Created new page by splitting off from sigaction.2 .\" -.TH SIGPENDING 2 (date) "Linux man-pages (unreleased)" +.TH sigpending 2 (date) "Linux man-pages (unreleased)" .SH NAME sigpending, rt_sigpending \- examine pending signals .SH LIBRARY diff --git a/man2/sigprocmask.2 b/man2/sigprocmask.2 index fa5d4b2dfb..6fa655feab 100644 --- a/man2/sigprocmask.2 +++ b/man2/sigprocmask.2 @@ -6,7 +6,7 @@ .\" .\" 2005-09-15, mtk, Created new page by splitting off from sigaction.2 .\" -.TH SIGPROCMASK 2 (date) "Linux man-pages (unreleased)" +.TH sigprocmask 2 (date) "Linux man-pages (unreleased)" .SH NAME sigprocmask, rt_sigprocmask \- examine and change blocked signals .SH LIBRARY diff --git a/man2/sigreturn.2 b/man2/sigreturn.2 index 761124fa41..0548c8ec33 100644 --- a/man2/sigreturn.2 +++ b/man2/sigreturn.2 @@ -7,7 +7,7 @@ .\" 2008-06-26, mtk, added some more detail on the work done by sigreturn() .\" 2014-12-05, mtk, rewrote all of the rest of the original page .\" -.TH SIGRETURN 2 (date) "Linux man-pages (unreleased)" +.TH sigreturn 2 (date) "Linux man-pages (unreleased)" .SH NAME sigreturn, rt_sigreturn \- return from signal handler and cleanup stack frame .SH LIBRARY diff --git a/man2/sigsuspend.2 b/man2/sigsuspend.2 index 47e09e04b7..8493d29691 100644 --- a/man2/sigsuspend.2 +++ b/man2/sigsuspend.2 @@ -6,7 +6,7 @@ .\" .\" 2005-09-15, mtk, Created new page by splitting off from sigaction.2 .\" -.TH SIGSUSPEND 2 (date) "Linux man-pages (unreleased)" +.TH sigsuspend 2 (date) "Linux man-pages (unreleased)" .SH NAME sigsuspend, rt_sigsuspend \- wait for a signal .SH LIBRARY diff --git a/man2/sigwaitinfo.2 b/man2/sigwaitinfo.2 index 270baf7118..96cf54e9a5 100644 --- a/man2/sigwaitinfo.2 +++ b/man2/sigwaitinfo.2 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SIGWAITINFO 2 (date) "Linux man-pages (unreleased)" +.TH sigwaitinfo 2 (date) "Linux man-pages (unreleased)" .SH NAME sigwaitinfo, sigtimedwait, rt_sigtimedwait \- synchronously wait for queued signals diff --git a/man2/socket.2 b/man2/socket.2 index 313ba45054..fa6ff8320f 100644 --- a/man2/socket.2 +++ b/man2/socket.2 @@ -11,7 +11,7 @@ .\" Modified 2002-07-17 by Michael Kerrisk .\" Modified 2004-06-17 by Michael Kerrisk .\" -.TH SOCKET 2 (date) "Linux man-pages (unreleased)" +.TH socket 2 (date) "Linux man-pages (unreleased)" .SH NAME socket \- create an endpoint for communication .SH LIBRARY diff --git a/man2/socketcall.2 b/man2/socketcall.2 index b6e6eca1e9..fd26d48a6d 100644 --- a/man2/socketcall.2 +++ b/man2/socketcall.2 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: GPL-2.0-or-later .\" .\" Modified Tue Oct 22 22:11:53 1996 by Eric S. Raymond -.TH SOCKETCALL 2 (date) "Linux man-pages (unreleased)" +.TH socketcall 2 (date) "Linux man-pages (unreleased)" .SH NAME socketcall \- socket system calls .SH LIBRARY diff --git a/man2/socketpair.2 b/man2/socketpair.2 index 7760904943..bc80614a1f 100644 --- a/man2/socketpair.2 +++ b/man2/socketpair.2 @@ -11,7 +11,7 @@ .\" Modified 2004-06-17 by Michael Kerrisk .\" 2008-10-11, mtk: Add description of SOCK_NONBLOCK and SOCK_CLOEXEC .\" -.TH SOCKETPAIR 2 (date) "Linux man-pages (unreleased)" +.TH socketpair 2 (date) "Linux man-pages (unreleased)" .SH NAME socketpair \- create a pair of connected sockets .SH LIBRARY diff --git a/man2/splice.2 b/man2/splice.2 index 0dbdb88a6c..4e6582f71e 100644 --- a/man2/splice.2 +++ b/man2/splice.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SPLICE 2 (date) "Linux man-pages (unreleased)" +.TH splice 2 (date) "Linux man-pages (unreleased)" .SH NAME splice \- splice data to/from a pipe .SH LIBRARY diff --git a/man2/spu_create.2 b/man2/spu_create.2 index 56e2d9144f..5b8263b252 100644 --- a/man2/spu_create.2 +++ b/man2/spu_create.2 @@ -8,7 +8,7 @@ .\" 2007-07-10, some polishing by mtk .\" 2007-09-28, updates for newer kernels by Jeremy Kerr .\" -.TH SPU_CREATE 2 (date) "Linux man-pages (unreleased)" +.TH spu_create 2 (date) "Linux man-pages (unreleased)" .SH NAME spu_create \- create a new spu context .SH LIBRARY diff --git a/man2/spu_run.2 b/man2/spu_run.2 index 673d3f8866..dfe5d9c839 100644 --- a/man2/spu_run.2 +++ b/man2/spu_run.2 @@ -9,7 +9,7 @@ .\" 2007-09-28, updates for newer kernels, added example .\" by Jeremy Kerr .\" -.TH SPU_RUN 2 (date) "Linux man-pages (unreleased)" +.TH spu_run 2 (date) "Linux man-pages (unreleased)" .SH NAME spu_run \- execute an SPU context .SH LIBRARY diff --git a/man2/stat.2 b/man2/stat.2 index d59b1b02c7..33541f0cf4 100644 --- a/man2/stat.2 +++ b/man2/stat.2 @@ -16,7 +16,7 @@ .\" 2007-06-08 mtk: Added example program .\" 2007-07-05 mtk: Added details on underlying system call interfaces .\" -.TH STAT 2 (date) "Linux man-pages (unreleased)" +.TH stat 2 (date) "Linux man-pages (unreleased)" .SH NAME stat, fstat, lstat, fstatat \- get file status .SH LIBRARY diff --git a/man2/statfs.2 b/man2/statfs.2 index c0de6ea393..8c4d6236f2 100644 --- a/man2/statfs.2 +++ b/man2/statfs.2 @@ -5,7 +5,7 @@ .\" Modified 2003-08-17 by Walter Harms .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH STATFS 2 (date) "Linux man-pages (unreleased)" +.TH statfs 2 (date) "Linux man-pages (unreleased)" .SH NAME statfs, fstatfs \- get filesystem statistics .SH LIBRARY diff --git a/man2/statx.2 b/man2/statx.2 index 1cf6336999..ca99f94639 100644 --- a/man2/statx.2 +++ b/man2/statx.2 @@ -7,7 +7,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH STATX 2 (date) "Linux man-pages (unreleased)" +.TH statx 2 (date) "Linux man-pages (unreleased)" .SH NAME statx \- get file status (extended) .SH LIBRARY diff --git a/man2/stime.2 b/man2/stime.2 index 457645afff..9fe1f47665 100644 --- a/man2/stime.2 +++ b/man2/stime.2 @@ -7,7 +7,7 @@ .\" Modified 2001-03-16 by Andries Brouwer .\" Modified 2004-05-27 by Michael Kerrisk .\" -.TH STIME 2 (date) "Linux man-pages (unreleased)" +.TH stime 2 (date) "Linux man-pages (unreleased)" .SH NAME stime \- set time .SH SYNOPSIS diff --git a/man2/subpage_prot.2 b/man2/subpage_prot.2 index b01adeb737..6a559e7162 100644 --- a/man2/subpage_prot.2 +++ b/man2/subpage_prot.2 @@ -7,7 +7,7 @@ .\" in kernel commit fa28237cfcc5827553044cbd6ee52e33692b0faa .\" both written by Paul Mackerras .\" -.TH SUBPAGE_PROT 2 (date) "Linux man-pages (unreleased)" +.TH subpage_prot 2 (date) "Linux man-pages (unreleased)" .SH NAME subpage_prot \- define a subpage protection for an address range .SH LIBRARY diff --git a/man2/swapon.2 b/man2/swapon.2 index d31b6bdfa8..3395f74173 100644 --- a/man2/swapon.2 +++ b/man2/swapon.2 @@ -22,7 +22,7 @@ .\" Author: Rafael Aquini .\" Date: Wed Jul 3 15:02:46 2013 -0700 .\" -.TH SWAPON 2 (date) "Linux man-pages (unreleased)" +.TH swapon 2 (date) "Linux man-pages (unreleased)" .SH NAME swapon, swapoff \- start/stop swapping to file/device .SH LIBRARY diff --git a/man2/symlink.2 b/man2/symlink.2 index ba73e22339..6f31302cc5 100644 --- a/man2/symlink.2 +++ b/man2/symlink.2 @@ -10,7 +10,7 @@ .\" Modified 1997-01-31 by Eric S. Raymond .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH SYMLINK 2 (date) "Linux man-pages (unreleased)" +.TH symlink 2 (date) "Linux man-pages (unreleased)" .SH NAME symlink, symlinkat \- make a new name for a file .SH LIBRARY diff --git a/man2/sync.2 b/man2/sync.2 index 802a60b2e1..8a3c503353 100644 --- a/man2/sync.2 +++ b/man2/sync.2 @@ -13,7 +13,7 @@ .\" Modified 2001-10-10 by aeb, following Michael Kerrisk. .\" 2011-09-07, mtk, Added syncfs() documentation, .\" -.TH SYNC 2 (date) "Linux man-pages (unreleased)" +.TH sync 2 (date) "Linux man-pages (unreleased)" .SH NAME sync, syncfs \- commit filesystem caches to disk .SH LIBRARY diff --git a/man2/sync_file_range.2 b/man2/sync_file_range.2 index 6a7df574b1..2a3f0a5b6e 100644 --- a/man2/sync_file_range.2 +++ b/man2/sync_file_range.2 @@ -7,7 +7,7 @@ .\" Andrew Morton's comments in fs/sync.c .\" 2010-10-09, mtk, Document sync_file_range2() .\" -.TH SYNC_FILE_RANGE 2 (date) "Linux man-pages (unreleased)" +.TH sync_file_range 2 (date) "Linux man-pages (unreleased)" .SH NAME sync_file_range \- sync a file segment with disk .SH LIBRARY diff --git a/man2/syscall.2 b/man2/syscall.2 index 95b2e7dbd9..1bac0b9d7d 100644 --- a/man2/syscall.2 +++ b/man2/syscall.2 @@ -11,7 +11,7 @@ .\" 2015-01-17, Kees Cook .\" Added mips and arm64. .\" -.TH SYSCALL 2 (date) "Linux man-pages (unreleased)" +.TH syscall 2 (date) "Linux man-pages (unreleased)" .SH NAME syscall \- indirect system call .SH LIBRARY diff --git a/man2/syscalls.2 b/man2/syscalls.2 index 8f6825f495..94196cad04 100644 --- a/man2/syscalls.2 +++ b/man2/syscalls.2 @@ -8,7 +8,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SYSCALLS 2 (date) "Linux man-pages (unreleased)" +.TH syscalls 2 (date) "Linux man-pages (unreleased)" .SH NAME syscalls \- Linux system calls .SH SYNOPSIS diff --git a/man2/sysctl.2 b/man2/sysctl.2 index 631b746843..10b88834b6 100644 --- a/man2/sysctl.2 +++ b/man2/sysctl.2 @@ -7,7 +7,7 @@ .\" Modified Tue Oct 22 22:28:41 1996 by Eric S. Raymond .\" Modified Mon Jan 5 20:31:04 1998 by aeb. .\" -.TH SYSCTL 2 (date) "Linux man-pages (unreleased)" +.TH sysctl 2 (date) "Linux man-pages (unreleased)" .SH NAME sysctl \- read/write system parameters .SH SYNOPSIS diff --git a/man2/sysfs.2 b/man2/sysfs.2 index 71ec86b97f..d2303a7d86 100644 --- a/man2/sysfs.2 +++ b/man2/sysfs.2 @@ -4,7 +4,7 @@ .\" .\" Created Wed Aug 9 1995 Thomas K. Dyas .\" -.TH SYSFS 2 (date) "Linux man-pages (unreleased)" +.TH sysfs 2 (date) "Linux man-pages (unreleased)" .SH NAME sysfs \- get filesystem type information .SH SYNOPSIS diff --git a/man2/sysinfo.2 b/man2/sysinfo.2 index 2f44d14b36..2e40351221 100644 --- a/man2/sysinfo.2 +++ b/man2/sysinfo.2 @@ -12,7 +12,7 @@ .\" Modified Tue Oct 22 22:29:51 1996 by Eric S. Raymond .\" Modified Mon Aug 25 16:06:11 1997 by Nicolás Lichtmaier .\" -.TH SYSINFO 2 (date) "Linux man-pages (unreleased)" +.TH sysinfo 2 (date) "Linux man-pages (unreleased)" .SH NAME sysinfo \- return system information .SH LIBRARY diff --git a/man2/syslog.2 b/man2/syslog.2 index 7aaef9e4de..4604c94850 100644 --- a/man2/syslog.2 +++ b/man2/syslog.2 @@ -9,7 +9,7 @@ .\" 2008-02-15, Michael Kerrisk .\" Update LOG_BUF_LEN details; update RETURN VALUE section. .\" -.TH SYSLOG 2 (date) "Linux man-pages (unreleased)" +.TH syslog 2 (date) "Linux man-pages (unreleased)" .SH NAME syslog, klogctl \- read and/or clear kernel message ring buffer; set console_loglevel diff --git a/man2/tee.2 b/man2/tee.2 index 30c8972668..5b549c6b69 100644 --- a/man2/tee.2 +++ b/man2/tee.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH TEE 2 (date) "Linux man-pages (unreleased)" +.TH tee 2 (date) "Linux man-pages (unreleased)" .SH NAME tee \- duplicating pipe content .SH LIBRARY diff --git a/man2/time.2 b/man2/time.2 index 3366bc0dc9..e9a09ba9bd 100644 --- a/man2/time.2 +++ b/man2/time.2 @@ -6,7 +6,7 @@ .\" Modified Sat Jul 24 14:13:40 1993 by Rik Faith .\" Additions by Joseph S. Myers , 970909 .\" -.TH TIME 2 (date) "Linux man-pages (unreleased)" +.TH time 2 (date) "Linux man-pages (unreleased)" .SH NAME time \- get time in seconds .SH LIBRARY diff --git a/man2/timer_create.2 b/man2/timer_create.2 index 57f42019ee..f17ef4a8af 100644 --- a/man2/timer_create.2 +++ b/man2/timer_create.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH TIMER_CREATE 2 (date) "Linux man-pages (unreleased)" +.TH timer_create 2 (date) "Linux man-pages (unreleased)" .SH NAME timer_create \- create a POSIX per-process timer .SH LIBRARY diff --git a/man2/timer_delete.2 b/man2/timer_delete.2 index 6006b03118..c489d9ec0d 100644 --- a/man2/timer_delete.2 +++ b/man2/timer_delete.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH TIMER_DELETE 2 (date) "Linux man-pages (unreleased)" +.TH timer_delete 2 (date) "Linux man-pages (unreleased)" .SH NAME timer_delete \- delete a POSIX per-process timer .SH LIBRARY diff --git a/man2/timer_getoverrun.2 b/man2/timer_getoverrun.2 index 5bbbbe5d28..3591e5de5d 100644 --- a/man2/timer_getoverrun.2 +++ b/man2/timer_getoverrun.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH TIMER_GETOVERRUN 2 (date) "Linux man-pages (unreleased)" +.TH timer_getoverrun 2 (date) "Linux man-pages (unreleased)" .SH NAME timer_getoverrun \- get overrun count for a POSIX per-process timer .SH LIBRARY diff --git a/man2/timer_settime.2 b/man2/timer_settime.2 index 3836773678..c52768be00 100644 --- a/man2/timer_settime.2 +++ b/man2/timer_settime.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH TIMER_SETTIME 2 (date) "Linux man-pages (unreleased)" +.TH timer_settime 2 (date) "Linux man-pages (unreleased)" .SH NAME timer_settime, timer_gettime \- arm/disarm and fetch state of POSIX per-process timer diff --git a/man2/times.2 b/man2/times.2 index 4089e09a5d..3526aea814 100644 --- a/man2/times.2 +++ b/man2/times.2 @@ -15,7 +15,7 @@ .\" Added notes on nonstandard behavior: Linux allows 'buf' to .\" be NULL, but POSIX.1 doesn't specify this and it's nonportable. .\" -.TH TIMES 2 (date) "Linux man-pages (unreleased)" +.TH times 2 (date) "Linux man-pages (unreleased)" .SH NAME times \- get process times .SH LIBRARY diff --git a/man2/tkill.2 b/man2/tkill.2 index 213b182424..9f12355dac 100644 --- a/man2/tkill.2 +++ b/man2/tkill.2 @@ -6,7 +6,7 @@ .\" 2004-05-31, added tgkill, ahu, aeb .\" 2008-01-15 mtk -- rewrote DESCRIPTION .\" -.TH TKILL 2 (date) "Linux man-pages (unreleased)" +.TH tkill 2 (date) "Linux man-pages (unreleased)" .SH NAME tkill, tgkill \- send a signal to a thread .SH LIBRARY diff --git a/man2/truncate.2 b/man2/truncate.2 index ab5cd6d275..bec1a57563 100644 --- a/man2/truncate.2 +++ b/man2/truncate.2 @@ -12,7 +12,7 @@ .\" Modified 2002-04-06 by Andries Brouwer .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH TRUNCATE 2 (date) "Linux man-pages (unreleased)" +.TH truncate 2 (date) "Linux man-pages (unreleased)" .SH NAME truncate, ftruncate \- truncate a file to a specified length .SH LIBRARY diff --git a/man2/umask.2 b/man2/umask.2 index d62855021c..6f1d6a5fd4 100644 --- a/man2/umask.2 +++ b/man2/umask.2 @@ -11,7 +11,7 @@ .\" with Lars Wirzenius suggestion .\" 2006-05-13, mtk, substantial rewrite of description of 'mask' .\" 2008-01-09, mtk, a few rewrites and additions. -.TH UMASK 2 (date) "Linux man-pages (unreleased)" +.TH umask 2 (date) "Linux man-pages (unreleased)" .SH NAME umask \- set file mode creation mask .SH LIBRARY diff --git a/man2/umount.2 b/man2/umount.2 index ff0bb8d1f6..cf1f49332d 100644 --- a/man2/umount.2 +++ b/man2/umount.2 @@ -7,7 +7,7 @@ .\" 2008-10-06, mtk: Created this as a new page by splitting .\" umount/umount2 material out of mount.2 .\" -.TH UMOUNT 2 (date) "Linux man-pages (unreleased)" +.TH umount 2 (date) "Linux man-pages (unreleased)" .SH NAME umount, umount2 \- unmount filesystem .SH LIBRARY diff --git a/man2/uname.2 b/man2/uname.2 index 25971ef468..5e3bfa9ec8 100644 --- a/man2/uname.2 +++ b/man2/uname.2 @@ -4,7 +4,7 @@ .\" .\" 2007-07-05 mtk: Added details on underlying system call interfaces .\" -.TH UNAME 2 (date) "Linux man-pages (unreleased)" +.TH uname 2 (date) "Linux man-pages (unreleased)" .SH NAME uname \- get name and information about current kernel .SH LIBRARY diff --git a/man2/unlink.2 b/man2/unlink.2 index 3f58d5f94b..2e88d312e2 100644 --- a/man2/unlink.2 +++ b/man2/unlink.2 @@ -10,7 +10,7 @@ .\" Modified 2001-05-17 by aeb .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH UNLINK 2 (date) "Linux man-pages (unreleased)" +.TH unlink 2 (date) "Linux man-pages (unreleased)" .SH NAME unlink, unlinkat \- delete a name and possibly the file it refers to .SH LIBRARY diff --git a/man2/unshare.2 b/man2/unshare.2 index ecfa7f0308..7b09ecbcb1 100644 --- a/man2/unshare.2 +++ b/man2/unshare.2 @@ -15,7 +15,7 @@ .\" by clone, which would require porting and maintaining all commands .\" such as login, and su, that establish a user session. .\" -.TH UNSHARE 2 (date) "Linux man-pages (unreleased)" +.TH unshare 2 (date) "Linux man-pages (unreleased)" .SH NAME unshare \- disassociate parts of the process execution context .SH LIBRARY diff --git a/man2/userfaultfd.2 b/man2/userfaultfd.2 index 8cd30f6e81..64482b3700 100644 --- a/man2/userfaultfd.2 +++ b/man2/userfaultfd.2 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH USERFAULTFD 2 (date) "Linux man-pages (unreleased)" +.TH userfaultfd 2 (date) "Linux man-pages (unreleased)" .SH NAME userfaultfd \- create a file descriptor for handling page faults in user space .SH LIBRARY diff --git a/man2/ustat.2 b/man2/ustat.2 index 4b6f82ce01..a7c991bbb6 100644 --- a/man2/ustat.2 +++ b/man2/ustat.2 @@ -7,7 +7,7 @@ .\" Modified 2001-03-22 by aeb .\" Modified 2003-08-04 by aeb .\" -.TH USTAT 2 (date) "Linux man-pages (unreleased)" +.TH ustat 2 (date) "Linux man-pages (unreleased)" .SH NAME ustat \- get filesystem statistics .SH LIBRARY diff --git a/man2/utime.2 b/man2/utime.2 index 168f09d3ae..cee1653443 100644 --- a/man2/utime.2 +++ b/man2/utime.2 @@ -8,7 +8,7 @@ .\" Modified 2004-06-23 by Michael Kerrisk .\" Modified 2004-10-10 by Andries Brouwer .\" -.TH UTIME 2 (date) "Linux man-pages (unreleased)" +.TH utime 2 (date) "Linux man-pages (unreleased)" .SH NAME utime, utimes \- change file last access and modification times .SH LIBRARY diff --git a/man2/utimensat.2 b/man2/utimensat.2 index e37fb1f7b1..df33a1f7eb 100644 --- a/man2/utimensat.2 +++ b/man2/utimensat.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH UTIMENSAT 2 (date) "Linux man-pages (unreleased)" +.TH utimensat 2 (date) "Linux man-pages (unreleased)" .SH NAME utimensat, futimens \- change file timestamps with nanosecond precision .SH LIBRARY diff --git a/man2/vfork.2 b/man2/vfork.2 index a4d88cda92..d4207a5dbc 100644 --- a/man2/vfork.2 +++ b/man2/vfork.2 @@ -6,7 +6,7 @@ .\" 1999-11-10: Merged text taken from the page contributed by .\" Reed H. Petty (rhp@draper.net) .\" -.TH VFORK 2 (date) "Linux man-pages (unreleased)" +.TH vfork 2 (date) "Linux man-pages (unreleased)" .SH NAME vfork \- create a child process and block parent .SH LIBRARY diff --git a/man2/vhangup.2 b/man2/vhangup.2 index 7787a8cfff..78ece4600b 100644 --- a/man2/vhangup.2 +++ b/man2/vhangup.2 @@ -5,7 +5,7 @@ .\" Modified, 27 May 2004, Michael Kerrisk .\" Added notes on capability requirements .\" -.TH VHANGUP 2 (date) "Linux man-pages (unreleased)" +.TH vhangup 2 (date) "Linux man-pages (unreleased)" .SH NAME vhangup \- virtually hangup the current terminal .SH LIBRARY diff --git a/man2/vm86.2 b/man2/vm86.2 index f36b0fc7f1..9c9102dc3e 100644 --- a/man2/vm86.2 +++ b/man2/vm86.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH VM86 2 (date) "Linux man-pages (unreleased)" +.TH vm86 2 (date) "Linux man-pages (unreleased)" .SH NAME vm86old, vm86 \- enter virtual 8086 mode .SH LIBRARY diff --git a/man2/vmsplice.2 b/man2/vmsplice.2 index 12ede53f9d..a12f6c8c93 100644 --- a/man2/vmsplice.2 +++ b/man2/vmsplice.2 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH VMSPLICE 2 (date) "Linux man-pages (unreleased)" +.TH vmsplice 2 (date) "Linux man-pages (unreleased)" .SH NAME vmsplice \- splice user pages to/from a pipe .SH LIBRARY diff --git a/man2/wait.2 b/man2/wait.2 index 53d6cab3d2..7f958ea71d 100644 --- a/man2/wait.2 +++ b/man2/wait.2 @@ -26,7 +26,7 @@ .\" 2005-05-10, mtk, __W* flags can't be used with waitid() .\" 2008-07-04, mtk, removed erroneous text about SA_NOCLDSTOP .\" -.TH WAIT 2 (date) "Linux man-pages (unreleased)" +.TH wait 2 (date) "Linux man-pages (unreleased)" .SH NAME wait, waitpid, waitid \- wait for process to change state .SH LIBRARY diff --git a/man2/wait4.2 b/man2/wait4.2 index 5d7c828824..82983ac0bf 100644 --- a/man2/wait4.2 +++ b/man2/wait4.2 @@ -10,7 +10,7 @@ .\" Rewrote much of this page, and removed much duplicated text, .\" replacing with pointers to wait.2 .\" -.TH WAIT4 2 (date) "Linux man-pages (unreleased)" +.TH wait4 2 (date) "Linux man-pages (unreleased)" .SH NAME wait3, wait4 \- wait for process to change state, BSD style .SH LIBRARY diff --git a/man2/write.2 b/man2/write.2 index 8dbf3dc808..073056d6ef 100644 --- a/man2/write.2 +++ b/man2/write.2 @@ -16,7 +16,7 @@ .\" gave some examples of why this might occur. .\" Noted what happens if write() is interrupted by a signal. .\" -.TH WRITE 2 (date) "Linux man-pages (unreleased)" +.TH write 2 (date) "Linux man-pages (unreleased)" .SH NAME write \- write to a file descriptor .SH LIBRARY diff --git a/man2type/open_how.2type b/man2type/open_how.2type index 945892104b..702cfe50be 100644 --- a/man2type/open_how.2type +++ b/man2type/open_how.2type @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH OPEN_HOW 2type (date) "Linux man-pages (unreleased)" +.TH open_how 2type (date) "Linux man-pages (unreleased)" .SH NAME open_how \- how to open a pathname .SH LIBRARY diff --git a/man3/__ppc_get_timebase.3 b/man3/__ppc_get_timebase.3 index c4d52c41de..0c2f69e537 100644 --- a/man3/__ppc_get_timebase.3 +++ b/man3/__ppc_get_timebase.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH __PPC_GET_TIMEBASE 3 (date) "Linux man-pages (unreleased)" +.TH __ppc_get_timebase 3 (date) "Linux man-pages (unreleased)" .SH NAME __ppc_get_timebase, __ppc_get_timebase_freq \- get the current value of the Time Base Register on Power architecture and its frequency. diff --git a/man3/__ppc_set_ppr_med.3 b/man3/__ppc_set_ppr_med.3 index 6737792f62..235eddc35b 100644 --- a/man3/__ppc_set_ppr_med.3 +++ b/man3/__ppc_set_ppr_med.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH __PPC_SET_PPR_MED 3 (date) "Linux man-pages (unreleased)" +.TH __ppc_set_ppr_med 3 (date) "Linux man-pages (unreleased)" Programmer's Manual" .SH NAME __ppc_set_ppr_med, __ppc_set_ppr_very_low, __ppc_set_ppr_low, diff --git a/man3/__ppc_yield.3 b/man3/__ppc_yield.3 index 77532e4b3f..06619cdc66 100644 --- a/man3/__ppc_yield.3 +++ b/man3/__ppc_yield.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH __PPC_YIELD 3 (date) "Linux man-pages (unreleased)" +.TH __ppc_yield 3 (date) "Linux man-pages (unreleased)" .SH NAME __ppc_yield, __ppc_mdoio, __ppc_mdoom \- Hint the processor to release shared resources diff --git a/man3/__setfpucw.3 b/man3/__setfpucw.3 index 8f7e9f489e..0b7a4f99cd 100644 --- a/man3/__setfpucw.3 +++ b/man3/__setfpucw.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH __SETFPUCW 3 (date) "Linux man-pages (unreleased)" +.TH __setfpucw 3 (date) "Linux man-pages (unreleased)" .SH NAME __setfpucw \- set FPU control word on i386 architecture (obsolete) .SH LIBRARY diff --git a/man3/a64l.3 b/man3/a64l.3 index f8d3eff90f..477fe9a0e3 100644 --- a/man3/a64l.3 +++ b/man3/a64l.3 @@ -5,7 +5,7 @@ .\" .\" Corrected, aeb, 2002-05-30 .\" -.TH A64L 3 (date) "Linux man-pages (unreleased)" +.TH a64l 3 (date) "Linux man-pages (unreleased)" .SH NAME a64l, l64a \- convert between long and base-64 .SH LIBRARY diff --git a/man3/abort.3 b/man3/abort.3 index 131e9cf46f..db59debfd2 100644 --- a/man3/abort.3 +++ b/man3/abort.3 @@ -11,7 +11,7 @@ .\" Modified Fri Aug 4 10:51:53 2000 - patch from Joseph S. Myers .\" 2007-12-15, mtk, Mostly rewritten .\" -.TH ABORT 3 (date) "Linux man-pages (unreleased)" +.TH abort 3 (date) "Linux man-pages (unreleased)" .SH NAME abort \- cause abnormal process termination .SH LIBRARY diff --git a/man3/abs.3 b/man3/abs.3 index 11d656084d..d2ceb88ab8 100644 --- a/man3/abs.3 +++ b/man3/abs.3 @@ -11,7 +11,7 @@ .\" Modified Sat Jul 24 21:45:37 1993, Rik Faith (faith@cs.unc.edu) .\" Modified Sat Dec 16 15:02:59 2000, Joseph S. Myers .\" -.TH ABS 3 (date) "Linux man-pages (unreleased)" +.TH abs 3 (date) "Linux man-pages (unreleased)" .SH NAME abs, labs, llabs, imaxabs \- compute the absolute value of an integer .SH LIBRARY diff --git a/man3/acos.3 b/man3/acos.3 index 9026b54dc8..0f2dfc0de3 100644 --- a/man3/acos.3 +++ b/man3/acos.3 @@ -12,7 +12,7 @@ .\" Modified 2002-07-25 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH ACOS 3 (date) "Linux man-pages (unreleased)" +.TH acos 3 (date) "Linux man-pages (unreleased)" .SH NAME acos, acosf, acosl \- arc cosine function .SH LIBRARY diff --git a/man3/acosh.3 b/man3/acosh.3 index 6f219d8a3d..2ce47c243a 100644 --- a/man3/acosh.3 +++ b/man3/acosh.3 @@ -12,7 +12,7 @@ .\" Modified 2002-07-25 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH ACOSH 3 (date) "Linux man-pages (unreleased)" +.TH acosh 3 (date) "Linux man-pages (unreleased)" .SH NAME acosh, acoshf, acoshl \- inverse hyperbolic cosine function .SH LIBRARY diff --git a/man3/addseverity.3 b/man3/addseverity.3 index 085386d2ac..0c33078a07 100644 --- a/man3/addseverity.3 +++ b/man3/addseverity.3 @@ -4,7 +4,7 @@ .\" adapted glibc info page .\" .\" polished a little, aeb -.TH ADDSEVERITY 3 (date) "Linux man-pages (unreleased)" +.TH addseverity 3 (date) "Linux man-pages (unreleased)" .SH NAME addseverity \- introduce new severity classes .SH LIBRARY diff --git a/man3/adjtime.3 b/man3/adjtime.3 index 052da01437..b6cce01798 100644 --- a/man3/adjtime.3 +++ b/man3/adjtime.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH ADJTIME 3 (date) "Linux man-pages (unreleased)" +.TH adjtime 3 (date) "Linux man-pages (unreleased)" .SH NAME adjtime \- correct the time to synchronize the system clock .SH LIBRARY diff --git a/man3/aio_cancel.3 b/man3/aio_cancel.3 index 64e39b1ff4..163715f543 100644 --- a/man3/aio_cancel.3 +++ b/man3/aio_cancel.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH AIO_CANCEL 3 (date) "Linux man-pages (unreleased)" +.TH aio_cancel 3 (date) "Linux man-pages (unreleased)" .SH NAME aio_cancel \- cancel an outstanding asynchronous I/O request .SH LIBRARY diff --git a/man3/aio_error.3 b/man3/aio_error.3 index 43b3b4c97b..2fb070fc82 100644 --- a/man3/aio_error.3 +++ b/man3/aio_error.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH AIO_ERROR 3 (date) "Linux man-pages (unreleased)" +.TH aio_error 3 (date) "Linux man-pages (unreleased)" .SH NAME aio_error \- get error status of asynchronous I/O operation .SH LIBRARY diff --git a/man3/aio_fsync.3 b/man3/aio_fsync.3 index 54109e0182..4d85b77f30 100644 --- a/man3/aio_fsync.3 +++ b/man3/aio_fsync.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH AIO_FSYNC 3 (date) "Linux man-pages (unreleased)" +.TH aio_fsync 3 (date) "Linux man-pages (unreleased)" .SH NAME aio_fsync \- asynchronous file synchronization .SH LIBRARY diff --git a/man3/aio_init.3 b/man3/aio_init.3 index f7911ec200..e4ad8c60a6 100644 --- a/man3/aio_init.3 +++ b/man3/aio_init.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH AIO_INIT 3 (date) "Linux man-pages (unreleased)" +.TH aio_init 3 (date) "Linux man-pages (unreleased)" .SH NAME aio_init \- asynchronous I/O initialization .SH LIBRARY diff --git a/man3/aio_read.3 b/man3/aio_read.3 index b8e9ab4daa..6927f8379b 100644 --- a/man3/aio_read.3 +++ b/man3/aio_read.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH AIO_READ 3 (date) "Linux man-pages (unreleased)" +.TH aio_read 3 (date) "Linux man-pages (unreleased)" .SH NAME aio_read \- asynchronous read .SH LIBRARY diff --git a/man3/aio_return.3 b/man3/aio_return.3 index 4cf2d86e24..64f47f08b7 100644 --- a/man3/aio_return.3 +++ b/man3/aio_return.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH AIO_RETURN 3 (date) "Linux man-pages (unreleased)" +.TH aio_return 3 (date) "Linux man-pages (unreleased)" .SH NAME aio_return \- get return status of asynchronous I/O operation .SH LIBRARY diff --git a/man3/aio_suspend.3 b/man3/aio_suspend.3 index 102fb52f03..544f4e85cd 100644 --- a/man3/aio_suspend.3 +++ b/man3/aio_suspend.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH AIO_SUSPEND 3 (date) "Linux man-pages (unreleased)" +.TH aio_suspend 3 (date) "Linux man-pages (unreleased)" .SH NAME aio_suspend \- wait for asynchronous I/O operation or timeout .SH LIBRARY diff --git a/man3/aio_write.3 b/man3/aio_write.3 index 34fbaad677..1ffe50b588 100644 --- a/man3/aio_write.3 +++ b/man3/aio_write.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH AIO_WRITE 3 (date) "Linux man-pages (unreleased)" +.TH aio_write 3 (date) "Linux man-pages (unreleased)" .SH NAME aio_write \- asynchronous write .SH LIBRARY diff --git a/man3/alloca.3 b/man3/alloca.3 index 8c8d79f49a..576deb4835 100644 --- a/man3/alloca.3 +++ b/man3/alloca.3 @@ -12,7 +12,7 @@ .\" Various rewrites and additions (notes on longjmp() and SIGSEGV). .\" Weaken warning against use of alloca() (as per Debian bug 461100). .\" -.TH ALLOCA 3 (date) "Linux man-pages (unreleased)" +.TH alloca 3 (date) "Linux man-pages (unreleased)" .SH NAME alloca \- allocate memory that is automatically freed .SH LIBRARY diff --git a/man3/argz_add.3 b/man3/argz_add.3 index 1d320c46b2..cfcdba5157 100644 --- a/man3/argz_add.3 +++ b/man3/argz_add.3 @@ -5,7 +5,7 @@ .\" based on the description in glibc source and infopages .\" .\" Corrections and additions, aeb -.TH ARGZ_ADD 3 (date) "Linux man-pages (unreleased)" +.TH argz_add 3 (date) "Linux man-pages (unreleased)" .SH NAME argz_add, argz_add_sep, argz_append, argz_count, argz_create, argz_create_sep, argz_delete, argz_extract, argz_insert, diff --git a/man3/asin.3 b/man3/asin.3 index 6e06c3d320..d9e7bcbbe8 100644 --- a/man3/asin.3 +++ b/man3/asin.3 @@ -12,7 +12,7 @@ .\" Modified 2002-07-25 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH ASIN 3 (date) "Linux man-pages (unreleased)" +.TH asin 3 (date) "Linux man-pages (unreleased)" .SH NAME asin, asinf, asinl \- arc sine function .SH LIBRARY diff --git a/man3/asinh.3 b/man3/asinh.3 index 126f761cf2..9563416008 100644 --- a/man3/asinh.3 +++ b/man3/asinh.3 @@ -12,7 +12,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH ASINH 3 (date) "Linux man-pages (unreleased)" +.TH asinh 3 (date) "Linux man-pages (unreleased)" .SH NAME asinh, asinhf, asinhl \- inverse hyperbolic sine function .SH LIBRARY diff --git a/man3/asprintf.3 b/man3/asprintf.3 index b7d38d104f..8b6d2b1f44 100644 --- a/man3/asprintf.3 +++ b/man3/asprintf.3 @@ -4,7 +4,7 @@ .\" .\" Text fragments inspired by Martin Schulze . .\" -.TH ASPRINTF 3 (date) "Linux man-pages (unreleased)" +.TH asprintf 3 (date) "Linux man-pages (unreleased)" .SH NAME asprintf, vasprintf \- print to allocated string .SH LIBRARY diff --git a/man3/assert.3 b/man3/assert.3 index fa762d92ee..7d837cd3f8 100644 --- a/man3/assert.3 +++ b/man3/assert.3 @@ -5,7 +5,7 @@ .\" Modified Sat Jul 24 21:42:42 1993 by Rik Faith .\" Modified Tue Oct 22 23:44:11 1996 by Eric S. Raymond .\" Modified Thu Jun 2 23:44:11 2016 by Nikos Mavrogiannopoulos -.TH ASSERT 3 (date) "Linux man-pages (unreleased)" +.TH assert 3 (date) "Linux man-pages (unreleased)" .SH NAME assert \- abort the program if assertion is false .SH LIBRARY diff --git a/man3/assert_perror.3 b/man3/assert_perror.3 index cb4497e4f8..8e9cd0a29f 100644 --- a/man3/assert_perror.3 +++ b/man3/assert_perror.3 @@ -5,7 +5,7 @@ .\" This replaces an earlier man page written by Walter Harms .\" . .\" -.TH ASSERT_PERROR 3 (date) "Linux man-pages (unreleased)" +.TH assert_perror 3 (date) "Linux man-pages (unreleased)" .SH NAME assert_perror \- test errnum and abort .SH LIBRARY diff --git a/man3/atan.3 b/man3/atan.3 index 00b30b360a..d40f50e0d3 100644 --- a/man3/atan.3 +++ b/man3/atan.3 @@ -12,7 +12,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH ATAN 3 (date) "Linux man-pages (unreleased)" +.TH atan 3 (date) "Linux man-pages (unreleased)" .SH NAME atan, atanf, atanl \- arc tangent function .SH LIBRARY diff --git a/man3/atan2.3 b/man3/atan2.3 index 88c9a12705..c60fa707bd 100644 --- a/man3/atan2.3 +++ b/man3/atan2.3 @@ -12,7 +12,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH ATAN2 3 (date) "Linux man-pages (unreleased)" +.TH atan2 3 (date) "Linux man-pages (unreleased)" .SH NAME atan2, atan2f, atan2l \- arc tangent function of two variables .SH LIBRARY diff --git a/man3/atanh.3 b/man3/atanh.3 index ded1abb43a..9087190fe6 100644 --- a/man3/atanh.3 +++ b/man3/atanh.3 @@ -12,7 +12,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH ATANH 3 (date) "Linux man-pages (unreleased)" +.TH atanh 3 (date) "Linux man-pages (unreleased)" .SH NAME atanh, atanhf, atanhl \- inverse hyperbolic tangent function .SH LIBRARY diff --git a/man3/atexit.3 b/man3/atexit.3 index ad6036cf50..06003cf98f 100644 --- a/man3/atexit.3 +++ b/man3/atexit.3 @@ -10,7 +10,7 @@ .\" Modified 1993-07-24, Rik Faith (faith@cs.unc.edu) .\" Modified 2003-10-25, Walter Harms .\" -.TH ATEXIT 3 (date) "Linux man-pages (unreleased)" +.TH atexit 3 (date) "Linux man-pages (unreleased)" .SH NAME atexit \- register a function to be called at normal process termination .SH LIBRARY diff --git a/man3/atof.3 b/man3/atof.3 index 090e345138..b82c1f4994 100644 --- a/man3/atof.3 +++ b/man3/atof.3 @@ -8,7 +8,7 @@ .\" 386BSD man pages .\" Modified Mon Mar 29 22:39:24 1993, David Metcalfe .\" Modified Sat Jul 24 21:39:22 1993, Rik Faith (faith@cs.unc.edu) -.TH ATOF 3 (date) "Linux man-pages (unreleased)" +.TH atof 3 (date) "Linux man-pages (unreleased)" .SH NAME atof \- convert a string to a double .SH LIBRARY diff --git a/man3/atoi.3 b/man3/atoi.3 index b6813f5636..d59c4f4893 100644 --- a/man3/atoi.3 +++ b/man3/atoi.3 @@ -10,7 +10,7 @@ .\" Modified Sat Jul 24 21:38:42 1993, Rik Faith (faith@cs.unc.edu) .\" Modified Sun Dec 17 18:35:06 2000, Joseph S. Myers .\" -.TH ATOI 3 (date) "Linux man-pages (unreleased)" +.TH atoi 3 (date) "Linux man-pages (unreleased)" .SH NAME atoi, atol, atoll \- convert a string to an integer .SH LIBRARY diff --git a/man3/basename.3 b/man3/basename.3 index ee456e6092..a523e0ed52 100644 --- a/man3/basename.3 +++ b/man3/basename.3 @@ -4,7 +4,7 @@ .\" .\" Created, 14 Dec 2000 by Michael Kerrisk .\" -.TH BASENAME 3 (date) "Linux man-pages (unreleased)" +.TH basename 3 (date) "Linux man-pages (unreleased)" .SH NAME basename, dirname \- parse pathname components .SH LIBRARY diff --git a/man3/bcmp.3 b/man3/bcmp.3 index 576fe29645..ff06b5482c 100644 --- a/man3/bcmp.3 +++ b/man3/bcmp.3 @@ -8,7 +8,7 @@ .\" 386BSD man pages .\" Modified Sat Jul 24 21:36:50 1993 by Rik Faith .\" Modified Tue Oct 22 23:47:36 1996 by Eric S. Raymond -.TH BCMP 3 (date) "Linux man-pages (unreleased)" +.TH bcmp 3 (date) "Linux man-pages (unreleased)" .SH NAME bcmp \- compare byte sequences .SH LIBRARY diff --git a/man3/bcopy.3 b/man3/bcopy.3 index 747b1e5289..4ae82e34dd 100644 --- a/man3/bcopy.3 +++ b/man3/bcopy.3 @@ -10,7 +10,7 @@ .\" Modified Sun Feb 26 14:52:00 1995 by Rik Faith .\" Modified Tue Oct 22 23:48:10 1996 by Eric S. Raymond .\" " -.TH BCOPY 3 (date) "Linux man-pages (unreleased)" +.TH bcopy 3 (date) "Linux man-pages (unreleased)" .SH NAME bcopy \- copy byte sequence .SH LIBRARY diff --git a/man3/bindresvport.3 b/man3/bindresvport.3 index 50007befd2..d43baed848 100644 --- a/man3/bindresvport.3 +++ b/man3/bindresvport.3 @@ -7,7 +7,7 @@ .\" 2007-05-31, mtk: Rewrite and substantial additional text. .\" 2008-12-03, mtk: Rewrote some pieces and fixed some errors .\" -.TH BINDRESVPORT 3 (date) "Linux man-pages (unreleased)" +.TH bindresvport 3 (date) "Linux man-pages (unreleased)" .SH NAME bindresvport \- bind a socket to a privileged IP port .SH LIBRARY diff --git a/man3/bsd_signal.3 b/man3/bsd_signal.3 index 847c1357ad..b6524e7916 100644 --- a/man3/bsd_signal.3 +++ b/man3/bsd_signal.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH BSD_SIGNAL 3 (date) "Linux man-pages (unreleased)" +.TH bsd_signal 3 (date) "Linux man-pages (unreleased)" .SH NAME bsd_signal \- signal handling with BSD semantics .SH LIBRARY diff --git a/man3/bsearch.3 b/man3/bsearch.3 index aacff782c3..02af77dcc8 100644 --- a/man3/bsearch.3 +++ b/man3/bsearch.3 @@ -8,7 +8,7 @@ .\" 386BSD man pages .\" Modified Mon Mar 29 22:41:16 1993, David Metcalfe .\" Modified Sat Jul 24 21:35:16 1993, Rik Faith (faith@cs.unc.edu) -.TH BSEARCH 3 (date) "Linux man-pages (unreleased)" +.TH bsearch 3 (date) "Linux man-pages (unreleased)" .SH NAME bsearch \- binary search of a sorted array .SH LIBRARY diff --git a/man3/btowc.3 b/man3/btowc.3 index 36d61be23b..dc04b2bd4b 100644 --- a/man3/btowc.3 +++ b/man3/btowc.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH BTOWC 3 (date) "Linux man-pages (unreleased)" +.TH btowc 3 (date) "Linux man-pages (unreleased)" .SH NAME btowc \- convert single byte to wide character .SH LIBRARY diff --git a/man3/btree.3 b/man3/btree.3 index 94dfc7af45..880aa28c85 100644 --- a/man3/btree.3 +++ b/man3/btree.3 @@ -5,7 +5,7 @@ .\" .\" @(#)btree.3 8.4 (Berkeley) 8/18/94 .\" -.TH BTREE 3 (date) "Linux man-pages (unreleased)" +.TH btree 3 (date) "Linux man-pages (unreleased)" .\".UC 7 .SH NAME btree \- btree database access method diff --git a/man3/bzero.3 b/man3/bzero.3 index cd57670077..34fecc7709 100644 --- a/man3/bzero.3 +++ b/man3/bzero.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH BZERO 3 (date) "Linux man-pages (unreleased)" +.TH bzero 3 (date) "Linux man-pages (unreleased)" .SH NAME bzero, explicit_bzero \- zero a byte string .SH LIBRARY diff --git a/man3/cabs.3 b/man3/cabs.3 index e0b58e6a6c..bc36e7456b 100644 --- a/man3/cabs.3 +++ b/man3/cabs.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CABS 3 (date) "Linux man-pages (unreleased)" +.TH cabs 3 (date) "Linux man-pages (unreleased)" .SH NAME cabs, cabsf, cabsl \- absolute value of a complex number .SH LIBRARY diff --git a/man3/cacos.3 b/man3/cacos.3 index 6be451d5b0..027bb4d9ae 100644 --- a/man3/cacos.3 +++ b/man3/cacos.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CACOS 3 (date) "Linux man-pages (unreleased)" +.TH cacos 3 (date) "Linux man-pages (unreleased)" .SH NAME cacos, cacosf, cacosl \- complex arc cosine .SH LIBRARY diff --git a/man3/cacosh.3 b/man3/cacosh.3 index c7b18a2d7f..f6bd7e1472 100644 --- a/man3/cacosh.3 +++ b/man3/cacosh.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CACOSH 3 (date) "Linux man-pages (unreleased)" +.TH cacosh 3 (date) "Linux man-pages (unreleased)" .SH NAME cacosh, cacoshf, cacoshl \- complex arc hyperbolic cosine .SH LIBRARY diff --git a/man3/canonicalize_file_name.3 b/man3/canonicalize_file_name.3 index 2bb8418fb4..d39b224f19 100644 --- a/man3/canonicalize_file_name.3 +++ b/man3/canonicalize_file_name.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH CANONICALIZE_FILE_NAME 3 (date) "Linux man-pages (unreleased)" +.TH canonicalize_file_name 3 (date) "Linux man-pages (unreleased)" .SH NAME canonicalize_file_name \- return the canonicalized absolute pathname .SH LIBRARY diff --git a/man3/carg.3 b/man3/carg.3 index 93d835032b..c6e9cdff26 100644 --- a/man3/carg.3 +++ b/man3/carg.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CARG 3 (date) "Linux man-pages (unreleased)" +.TH carg 3 (date) "Linux man-pages (unreleased)" .SH NAME carg, cargf, cargl \- calculate the complex argument .SH LIBRARY diff --git a/man3/casin.3 b/man3/casin.3 index f2514ec813..548765d294 100644 --- a/man3/casin.3 +++ b/man3/casin.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CASIN 3 (date) "Linux man-pages (unreleased)" +.TH casin 3 (date) "Linux man-pages (unreleased)" .SH NAME casin, casinf, casinl \- complex arc sine .SH LIBRARY diff --git a/man3/casinh.3 b/man3/casinh.3 index cc1db9ebda..53ea3f7f88 100644 --- a/man3/casinh.3 +++ b/man3/casinh.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CASINH 3 (date) "Linux man-pages (unreleased)" +.TH casinh 3 (date) "Linux man-pages (unreleased)" .SH NAME casinh, casinhf, casinhl \- complex arc sine hyperbolic .SH LIBRARY diff --git a/man3/catan.3 b/man3/catan.3 index 075f1f7543..54a9892d37 100644 --- a/man3/catan.3 +++ b/man3/catan.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CATAN 3 (date) "Linux man-pages (unreleased)" +.TH catan 3 (date) "Linux man-pages (unreleased)" .SH NAME catan, catanf, catanl \- complex arc tangents .SH LIBRARY diff --git a/man3/catanh.3 b/man3/catanh.3 index 4e3315f0ed..933bf96e8d 100644 --- a/man3/catanh.3 +++ b/man3/catanh.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CATANH 3 (date) "Linux man-pages (unreleased)" +.TH catanh 3 (date) "Linux man-pages (unreleased)" .SH NAME catanh, catanhf, catanhl \- complex arc tangents hyperbolic .SH LIBRARY diff --git a/man3/catopen.3 b/man3/catopen.3 index 514e2f0088..3f9fad9b2d 100644 --- a/man3/catopen.3 +++ b/man3/catopen.3 @@ -5,7 +5,7 @@ .\" Modified Thu Dec 13 22:51:19 2001 by Martin Schulze .\" Modified 2001-12-14 aeb .\" -.TH CATOPEN 3 (date) "Linux man-pages (unreleased)" +.TH catopen 3 (date) "Linux man-pages (unreleased)" .SH NAME catopen, catclose \- open/close a message catalog .SH LIBRARY diff --git a/man3/cbrt.3 b/man3/cbrt.3 index c697965844..cfc25aa0bd 100644 --- a/man3/cbrt.3 +++ b/man3/cbrt.3 @@ -7,7 +7,7 @@ .\" Modified 2002-07-27 Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH CBRT 3 (date) "Linux man-pages (unreleased)" +.TH cbrt 3 (date) "Linux man-pages (unreleased)" .SH NAME cbrt, cbrtf, cbrtl \- cube root function .SH LIBRARY diff --git a/man3/ccos.3 b/man3/ccos.3 index 3192790648..746ae431cd 100644 --- a/man3/ccos.3 +++ b/man3/ccos.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CCOS 3 (date) "Linux man-pages (unreleased)" +.TH ccos 3 (date) "Linux man-pages (unreleased)" .SH NAME ccos, ccosf, ccosl \- complex cosine function .SH LIBRARY diff --git a/man3/ccosh.3 b/man3/ccosh.3 index 092ea5bea0..510a46d5e5 100644 --- a/man3/ccosh.3 +++ b/man3/ccosh.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CCOSH 3 (date) "Linux man-pages (unreleased)" +.TH ccosh 3 (date) "Linux man-pages (unreleased)" .SH NAME ccosh, ccoshf, ccoshl \- complex hyperbolic cosine .SH LIBRARY diff --git a/man3/ceil.3 b/man3/ceil.3 index 5eb762e65f..f56036dd15 100644 --- a/man3/ceil.3 +++ b/man3/ceil.3 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH CEIL 3 (date) "Linux man-pages (unreleased)" +.TH ceil 3 (date) "Linux man-pages (unreleased)" .SH NAME ceil, ceilf, ceill \- ceiling function: smallest integral value not less than argument diff --git a/man3/cexp.3 b/man3/cexp.3 index fa1cf113f8..8d89e1c56b 100644 --- a/man3/cexp.3 +++ b/man3/cexp.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CEXP 3 (date) "Linux man-pages (unreleased)" +.TH cexp 3 (date) "Linux man-pages (unreleased)" .SH NAME cexp, cexpf, cexpl \- complex exponential function .SH LIBRARY diff --git a/man3/cexp2.3 b/man3/cexp2.3 index ed757efbe1..0310845e93 100644 --- a/man3/cexp2.3 +++ b/man3/cexp2.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CEXP2 3 (date) "Linux man-pages (unreleased)" +.TH cexp2 3 (date) "Linux man-pages (unreleased)" .SH NAME cexp2, cexp2f, cexp2l \- base-2 exponent of a complex number .SH LIBRARY diff --git a/man3/cimag.3 b/man3/cimag.3 index 4182d3afee..70f1db3955 100644 --- a/man3/cimag.3 +++ b/man3/cimag.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CIMAG 3 (date) "Linux man-pages (unreleased)" +.TH cimag 3 (date) "Linux man-pages (unreleased)" .SH NAME cimag, cimagf, cimagl \- get imaginary part of a complex number .SH LIBRARY diff --git a/man3/clearenv.3 b/man3/clearenv.3 index 90bc84d4e2..79ec2ead42 100644 --- a/man3/clearenv.3 +++ b/man3/clearenv.3 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" Additions, aeb, 2001-10-17. -.TH CLEARENV 3 (date) "Linux man-pages (unreleased)" +.TH clearenv 3 (date) "Linux man-pages (unreleased)" .SH NAME clearenv \- clear the environment .SH LIBRARY diff --git a/man3/clock.3 b/man3/clock.3 index 49dc393c00..c5a42fe50e 100644 --- a/man3/clock.3 +++ b/man3/clock.3 @@ -6,7 +6,7 @@ .\" Modified 14 Jun 2002, Michael Kerrisk .\" Added notes on differences from other UNIX systems with respect to .\" waited-for children. -.TH CLOCK 3 (date) "Linux man-pages (unreleased)" +.TH clock 3 (date) "Linux man-pages (unreleased)" .SH NAME clock \- determine processor time .SH LIBRARY diff --git a/man3/clock_getcpuclockid.3 b/man3/clock_getcpuclockid.3 index 7dbd64bdc8..2813a912e9 100644 --- a/man3/clock_getcpuclockid.3 +++ b/man3/clock_getcpuclockid.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH CLOCK_GETCPUCLOCKID 3 (date) "Linux man-pages (unreleased)" +.TH clock_getcpuclockid 3 (date) "Linux man-pages (unreleased)" .SH NAME clock_getcpuclockid \- obtain ID of a process CPU-time clock .SH LIBRARY diff --git a/man3/clog.3 b/man3/clog.3 index 34762b3e2f..1867bf8d8f 100644 --- a/man3/clog.3 +++ b/man3/clog.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CLOG 3 (date) "Linux man-pages (unreleased)" +.TH clog 3 (date) "Linux man-pages (unreleased)" .SH NAME clog, clogf, clogl \- natural logarithm of a complex number .SH LIBRARY diff --git a/man3/clog10.3 b/man3/clog10.3 index a57436780c..5afe3d3e62 100644 --- a/man3/clog10.3 +++ b/man3/clog10.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CLOG10 3 (date) "Linux man-pages (unreleased)" +.TH clog10 3 (date) "Linux man-pages (unreleased)" .SH NAME clog10, clog10f, clog10l \- base-10 logarithm of a complex number .SH LIBRARY diff --git a/man3/clog2.3 b/man3/clog2.3 index f06886f714..e0c7bd94fd 100644 --- a/man3/clog2.3 +++ b/man3/clog2.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CLOG2 3 (date) "Linux man-pages (unreleased)" +.TH clog2 3 (date) "Linux man-pages (unreleased)" .SH NAME clog2, clog2f, clog2l \- base-2 logarithm of a complex number .SH LIBRARY diff --git a/man3/closedir.3 b/man3/closedir.3 index cd9742bf62..613582c307 100644 --- a/man3/closedir.3 +++ b/man3/closedir.3 @@ -8,7 +8,7 @@ .\" 386BSD man pages .\" Modified Sat Jul 24 21:25:52 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified 11 June 1995 by Andries Brouwer (aeb@cwi.nl) -.TH CLOSEDIR 3 (date) "Linux man-pages (unreleased)" +.TH closedir 3 (date) "Linux man-pages (unreleased)" .SH NAME closedir \- close a directory .SH LIBRARY diff --git a/man3/confstr.3 b/man3/confstr.3 index 8dca93ecdd..4cc06918eb 100644 --- a/man3/confstr.3 +++ b/man3/confstr.3 @@ -10,7 +10,7 @@ .\" These should all be added to this page. .\" See also the POSIX.1-2001 specification of confstr() .\" -.TH CONFSTR 3 (date) "Linux man-pages (unreleased)" +.TH confstr 3 (date) "Linux man-pages (unreleased)" .SH NAME confstr \- get configuration dependent string variables .SH LIBRARY diff --git a/man3/conj.3 b/man3/conj.3 index 877206e0ec..82a35f90cd 100644 --- a/man3/conj.3 +++ b/man3/conj.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CONJ 3 (date) "Linux man-pages (unreleased)" +.TH conj 3 (date) "Linux man-pages (unreleased)" .SH NAME conj, conjf, conjl \- calculate the complex conjugate .SH LIBRARY diff --git a/man3/copysign.3 b/man3/copysign.3 index be9d4619bb..5320b69547 100644 --- a/man3/copysign.3 +++ b/man3/copysign.3 @@ -8,7 +8,7 @@ .\" 386BSD man pages .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu) .\" Modified 2002-08-10 by Walter Harms (walter.harms@informatik.uni-oldenburg.de) -.TH COPYSIGN 3 (date) "Linux man-pages (unreleased)" +.TH copysign 3 (date) "Linux man-pages (unreleased)" .SH NAME copysign, copysignf, copysignl \- copy sign of a number .SH LIBRARY diff --git a/man3/cos.3 b/man3/cos.3 index 096bee1bac..0258b368fd 100644 --- a/man3/cos.3 +++ b/man3/cos.3 @@ -11,7 +11,7 @@ .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu) .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) -.TH COS 3 (date) "Linux man-pages (unreleased)" +.TH cos 3 (date) "Linux man-pages (unreleased)" .SH NAME cos, cosf, cosl \- cosine function .SH LIBRARY diff --git a/man3/cosh.3 b/man3/cosh.3 index 49e7341358..cc8d5210d9 100644 --- a/man3/cosh.3 +++ b/man3/cosh.3 @@ -13,7 +13,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH COSH 3 (date) "Linux man-pages (unreleased)" +.TH cosh 3 (date) "Linux man-pages (unreleased)" .SH NAME cosh, coshf, coshl \- hyperbolic cosine function .SH LIBRARY diff --git a/man3/cpow.3 b/man3/cpow.3 index ae2b650487..b6824b8ff2 100644 --- a/man3/cpow.3 +++ b/man3/cpow.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CPOW 3 (date) "Linux man-pages (unreleased)" +.TH cpow 3 (date) "Linux man-pages (unreleased)" .SH NAME cpow, cpowf, cpowl \- complex power function .SH LIBRARY diff --git a/man3/cproj.3 b/man3/cproj.3 index a9bbc59f6d..d839fe8615 100644 --- a/man3/cproj.3 +++ b/man3/cproj.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CPROJ 3 (date) "Linux man-pages (unreleased)" +.TH cproj 3 (date) "Linux man-pages (unreleased)" .SH NAME cproj, cprojf, cprojl \- project into Riemann Sphere .SH LIBRARY diff --git a/man3/creal.3 b/man3/creal.3 index 460c1acdb5..3024580749 100644 --- a/man3/creal.3 +++ b/man3/creal.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CREAL 3 (date) "Linux man-pages (unreleased)" +.TH creal 3 (date) "Linux man-pages (unreleased)" .SH NAME creal, crealf, creall \- get real part of a complex number .SH LIBRARY diff --git a/man3/crypt.3 b/man3/crypt.3 index f07a73513e..4a27274166 100644 --- a/man3/crypt.3 +++ b/man3/crypt.3 @@ -14,7 +14,7 @@ .\" added _XOPEN_SOURCE, aeb, 970705 .\" added GNU MD5 stuff, aeb, 011223 .\" -.TH CRYPT 3 (date) "Linux man-pages (unreleased)" +.TH crypt 3 (date) "Linux man-pages (unreleased)" .SH NAME crypt, crypt_r \- password and data encryption .SH LIBRARY diff --git a/man3/csin.3 b/man3/csin.3 index b94767a5f3..08dd9889f6 100644 --- a/man3/csin.3 +++ b/man3/csin.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CSIN 3 (date) "Linux man-pages (unreleased)" +.TH csin 3 (date) "Linux man-pages (unreleased)" .SH NAME csin, csinf, csinl \- complex sine function .SH LIBRARY diff --git a/man3/csinh.3 b/man3/csinh.3 index 0586dd88c1..531921dd1c 100644 --- a/man3/csinh.3 +++ b/man3/csinh.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CSINH 3 (date) "Linux man-pages (unreleased)" +.TH csinh 3 (date) "Linux man-pages (unreleased)" .SH NAME csinh, csinhf, csinhl \- complex hyperbolic sine .SH LIBRARY diff --git a/man3/csqrt.3 b/man3/csqrt.3 index 908d2347a9..debb868795 100644 --- a/man3/csqrt.3 +++ b/man3/csqrt.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CSQRT 3 (date) "Linux man-pages (unreleased)" +.TH csqrt 3 (date) "Linux man-pages (unreleased)" .SH NAME csqrt, csqrtf, csqrtl \- complex square root .SH LIBRARY diff --git a/man3/ctan.3 b/man3/ctan.3 index 1c35c9787f..fed2c56308 100644 --- a/man3/ctan.3 +++ b/man3/ctan.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CTAN 3 (date) "Linux man-pages (unreleased)" +.TH ctan 3 (date) "Linux man-pages (unreleased)" .SH NAME ctan, ctanf, ctanl \- complex tangent function .SH LIBRARY diff --git a/man3/ctanh.3 b/man3/ctanh.3 index 7693132d1b..222eb18d1f 100644 --- a/man3/ctanh.3 +++ b/man3/ctanh.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH CTANH 3 (date) "Linux man-pages (unreleased)" +.TH ctanh 3 (date) "Linux man-pages (unreleased)" .SH NAME ctanh, ctanhf, ctanhl \- complex hyperbolic tangent .SH LIBRARY diff --git a/man3/ctermid.3 b/man3/ctermid.3 index bcd2a59ccb..f94adb5a1e 100644 --- a/man3/ctermid.3 +++ b/man3/ctermid.3 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" Modified Sat Jul 24 19:51:06 1993 by Rik Faith (faith@cs.unc.edu) -.TH CTERMID 3 (date) "Linux man-pages (unreleased)" +.TH ctermid 3 (date) "Linux man-pages (unreleased)" .SH NAME ctermid \- get controlling terminal name .SH LIBRARY diff --git a/man3/ctime.3 b/man3/ctime.3 index 208dde1bc4..b57b631234 100644 --- a/man3/ctime.3 +++ b/man3/ctime.3 @@ -12,7 +12,7 @@ .\" Modified 2001-12-13, joey, aeb .\" Modified 2004-11-16, mtk .\" -.TH CTIME 3 (date) "Linux man-pages (unreleased)" +.TH ctime 3 (date) "Linux man-pages (unreleased)" .SH NAME asctime, ctime, gmtime, localtime, mktime, asctime_r, ctime_r, gmtime_r, localtime_r \- transform date and time to broken-down time or ASCII diff --git a/man3/daemon.3 b/man3/daemon.3 index b205b0f664..6170e8b8f5 100644 --- a/man3/daemon.3 +++ b/man3/daemon.3 @@ -5,7 +5,7 @@ .\" .\" @(#)daemon.3 8.1 (Berkeley) 6/9/93 .\" Added mentioning of glibc weirdness wrt unistd.h. 5/11/98, Al Viro -.TH DAEMON 3 (date) "Linux man-pages (unreleased)" +.TH daemon 3 (date) "Linux man-pages (unreleased)" .SH NAME daemon \- run in the background .SH LIBRARY diff --git a/man3/dbopen.3 b/man3/dbopen.3 index 9419713735..6e71f1f321 100644 --- a/man3/dbopen.3 +++ b/man3/dbopen.3 @@ -5,7 +5,7 @@ .\" .\" @(#)dbopen.3 8.5 (Berkeley) 1/2/94 .\" -.TH DBOPEN 3 (date) "Linux man-pages (unreleased)" +.TH dbopen 3 (date) "Linux man-pages (unreleased)" .UC 7 .SH NAME dbopen \- database access methods diff --git a/man3/des_crypt.3 b/man3/des_crypt.3 index 3aaab3bbb9..a59519589c 100644 --- a/man3/des_crypt.3 +++ b/man3/des_crypt.3 @@ -9,7 +9,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH DES_CRYPT 3 (date) "Linux man-pages (unreleased)" +.TH des_crypt 3 (date) "Linux man-pages (unreleased)" .SH NAME des_crypt, ecb_crypt, cbc_crypt, des_setparity, DES_FAILED \- fast DES encryption diff --git a/man3/difftime.3 b/man3/difftime.3 index 1719206a98..10695739c3 100644 --- a/man3/difftime.3 +++ b/man3/difftime.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 19:48:17 1993 by Rik Faith (faith@cs.unc.edu) -.TH DIFFTIME 3 (date) "Linux man-pages (unreleased)" +.TH difftime 3 (date) "Linux man-pages (unreleased)" .SH NAME difftime \- calculate time difference .SH LIBRARY diff --git a/man3/dirfd.3 b/man3/dirfd.3 index 65aa23d634..2bb00c10a5 100644 --- a/man3/dirfd.3 +++ b/man3/dirfd.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH DIRFD 3 (date) "Linux man-pages (unreleased)" +.TH dirfd 3 (date) "Linux man-pages (unreleased)" .SH NAME dirfd \- get directory stream file descriptor .SH LIBRARY diff --git a/man3/div.3 b/man3/div.3 index 20e87a31bb..18e2f592e2 100644 --- a/man3/div.3 +++ b/man3/div.3 @@ -11,7 +11,7 @@ .\" Modified 1993-07-24, Rik Faith (faith@cs.unc.edu) .\" Modified 2002-08-10, 2003-11-01 Walter Harms, aeb .\" -.TH DIV 3 (date) "Linux man-pages (unreleased)" +.TH div 3 (date) "Linux man-pages (unreleased)" .SH NAME div, ldiv, lldiv, imaxdiv \- compute quotient and remainder of an integer division diff --git a/man3/dlerror.3 b/man3/dlerror.3 index 3ce6db16d6..fff4f05cac 100644 --- a/man3/dlerror.3 +++ b/man3/dlerror.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH DLERROR 3 (date) "Linux man-pages (unreleased)" +.TH dlerror 3 (date) "Linux man-pages (unreleased)" .SH NAME dlerror \- obtain error diagnostic for functions in the dlopen API .SH LIBRARY diff --git a/man3/drand48.3 b/man3/drand48.3 index cdef693869..555acfda6f 100644 --- a/man3/drand48.3 +++ b/man3/drand48.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 19:46:03 1993 by Rik Faith (faith@cs.unc.edu) -.TH DRAND48 3 (date) "Linux man-pages (unreleased)" +.TH drand48 3 (date) "Linux man-pages (unreleased)" .SH NAME drand48, erand48, lrand48, nrand48, mrand48, jrand48, srand48, seed48, lcong48 \- generate uniformly distributed pseudo-random numbers diff --git a/man3/drand48_r.3 b/man3/drand48_r.3 index 66282ecace..1910cde79b 100644 --- a/man3/drand48_r.3 +++ b/man3/drand48_r.3 @@ -4,7 +4,7 @@ .\" .\" Created 2004-10-31. Text taken from a page by Walter Harms, 2003-09-08 .\" -.TH DRAND48_R 3 (date) "Linux man-pages (unreleased)" +.TH drand48_r 3 (date) "Linux man-pages (unreleased)" .SH NAME drand48_r, erand48_r, lrand48_r, nrand48_r, mrand48_r, jrand48_r, srand48_r, seed48_r, lcong48_r diff --git a/man3/duplocale.3 b/man3/duplocale.3 index 51d1544eeb..a92c067db6 100644 --- a/man3/duplocale.3 +++ b/man3/duplocale.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH DUPLOCALE 3 (date) "Linux man-pages (unreleased)" +.TH duplocale 3 (date) "Linux man-pages (unreleased)" .SH NAME duplocale \- duplicate a locale object .SH LIBRARY diff --git a/man3/dysize.3 b/man3/dysize.3 index e39ad550ff..31922f2bf7 100644 --- a/man3/dysize.3 +++ b/man3/dysize.3 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" aeb: some corrections -.TH DYSIZE 3 (date) "Linux man-pages (unreleased)" +.TH dysize 3 (date) "Linux man-pages (unreleased)" .SH NAME dysize \- get number of days for a given year .SH LIBRARY diff --git a/man3/ecvt.3 b/man3/ecvt.3 index 54c87d0e4c..c01a6b4581 100644 --- a/man3/ecvt.3 +++ b/man3/ecvt.3 @@ -9,7 +9,7 @@ .\" Modified Sat Jul 24 19:40:39 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Fri Jun 25 12:10:47 1999 by Andries Brouwer (aeb@cwi.nl) .\" -.TH ECVT 3 (date) "Linux man-pages (unreleased)" +.TH ecvt 3 (date) "Linux man-pages (unreleased)" .SH NAME ecvt, fcvt \- convert a floating-point number to a string .SH LIBRARY diff --git a/man3/ecvt_r.3 b/man3/ecvt_r.3 index 195ce78230..c9e8dd6773 100644 --- a/man3/ecvt_r.3 +++ b/man3/ecvt_r.3 @@ -7,7 +7,7 @@ .\" .\" Corrected return types; from Fabian; 2004-10-05 .\" -.TH ECVT_R 3 (date) "Linux man-pages (unreleased)" +.TH ecvt_r 3 (date) "Linux man-pages (unreleased)" .SH NAME ecvt_r, fcvt_r, qecvt_r, qfcvt_r \- convert a floating-point number to a string .SH LIBRARY diff --git a/man3/encrypt.3 b/man3/encrypt.3 index d8b1834c30..8d7aece63f 100644 --- a/man3/encrypt.3 +++ b/man3/encrypt.3 @@ -8,7 +8,7 @@ .\" .\" Modified 2003-04-04, aeb .\" -.TH ENCRYPT 3 (date) "Linux man-pages (unreleased)" +.TH encrypt 3 (date) "Linux man-pages (unreleased)" .SH NAME encrypt, setkey, encrypt_r, setkey_r \- encrypt 64-bit messages .SH LIBRARY diff --git a/man3/end.3 b/man3/end.3 index b0f289fcb3..6531a07927 100644 --- a/man3/end.3 +++ b/man3/end.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH END 3 (date) "Linux man-pages (unreleased)" +.TH end 3 (date) "Linux man-pages (unreleased)" .SH NAME etext, edata, end \- end of program segments .SH SYNOPSIS diff --git a/man3/envz_add.3 b/man3/envz_add.3 index 72478d58d4..010f6b1769 100644 --- a/man3/envz_add.3 +++ b/man3/envz_add.3 @@ -5,7 +5,7 @@ .\" based on the description in glibc source and infopages .\" .\" Corrections and additions, aeb -.TH ENVZ_ADD 3 (date) "Linux man-pages (unreleased)" +.TH envz_add 3 (date) "Linux man-pages (unreleased)" .SH NAME envz_add, envz_entry, envz_get, envz_merge, envz_remove, envz_strip \- environment string support diff --git a/man3/erf.3 b/man3/erf.3 index 31051475ec..fa0529f25b 100644 --- a/man3/erf.3 +++ b/man3/erf.3 @@ -12,7 +12,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH ERF 3 (date) "Linux man-pages (unreleased)" +.TH erf 3 (date) "Linux man-pages (unreleased)" .SH NAME erf, erff, erfl \- error function .SH LIBRARY diff --git a/man3/erfc.3 b/man3/erfc.3 index a0b4fc0a4e..2a6095555d 100644 --- a/man3/erfc.3 +++ b/man3/erfc.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH ERFC 3 (date) "Linux man-pages (unreleased)" +.TH erfc 3 (date) "Linux man-pages (unreleased)" .SH NAME erfc, erfcf, erfcl \- complementary error function .SH LIBRARY diff --git a/man3/err.3 b/man3/err.3 index 6586078e1d..19a6b721da 100644 --- a/man3/err.3 +++ b/man3/err.3 @@ -8,7 +8,7 @@ .\" .\" 2011-09-10, mtk, Converted from mdoc to man macros .\" -.TH ERR 3 (date) "Linux man-pages (unreleased)" +.TH err 3 (date) "Linux man-pages (unreleased)" .SH NAME err, verr, errx, verrx, warn, vwarn, warnx, vwarnx \- formatted error messages .SH LIBRARY diff --git a/man3/errno.3 b/man3/errno.3 index e1e1fe925b..23a5df19f8 100644 --- a/man3/errno.3 +++ b/man3/errno.3 @@ -9,7 +9,7 @@ .\" 2006-02-09 Kurt Wall, mtk .\" Added non-POSIX errors .\" -.TH ERRNO 3 (date) "Linux man-pages (unreleased)" +.TH errno 3 (date) "Linux man-pages (unreleased)" .SH NAME errno \- number of last error .SH LIBRARY diff --git a/man3/error.3 b/man3/error.3 index d58a6e1c94..d5ecbc59e7 100644 --- a/man3/error.3 +++ b/man3/error.3 @@ -24,7 +24,7 @@ .\" .\" References: .\" glibc manual and source -.TH ERROR 3 (date) "Linux man-pages (unreleased)" +.TH error 3 (date) "Linux man-pages (unreleased)" .SH NAME error, error_at_line, error_message_count, error_one_per_line, error_print_progname \- glibc error reporting functions diff --git a/man3/ether_aton.3 b/man3/ether_aton.3 index 0ffe62ce4c..017c739dc1 100644 --- a/man3/ether_aton.3 +++ b/man3/ether_aton.3 @@ -8,7 +8,7 @@ .\" .\" Minor additions, aeb, 2013-06-21 .\" -.TH ETHER_ATON 3 (date) "Linux man-pages (unreleased)" +.TH ether_aton 3 (date) "Linux man-pages (unreleased)" .SH NAME ether_aton, ether_ntoa, ether_ntohost, ether_hostton, ether_line, ether_ntoa_r, ether_aton_r \- Ethernet address manipulation routines diff --git a/man3/euidaccess.3 b/man3/euidaccess.3 index 9e364dcc17..2a2c298fce 100644 --- a/man3/euidaccess.3 +++ b/man3/euidaccess.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH EUIDACCESS 3 (date) "Linux man-pages (unreleased)" +.TH euidaccess 3 (date) "Linux man-pages (unreleased)" .SH NAME euidaccess, eaccess \- check effective user's permissions for a file .SH LIBRARY diff --git a/man3/exit.3 b/man3/exit.3 index 7e5f064331..a086dfc9ae 100644 --- a/man3/exit.3 +++ b/man3/exit.3 @@ -6,7 +6,7 @@ .\" could be listed on this page. See, for example, the list in the .\" POSIX exit(3p) page. .\" -.TH EXIT 3 (date) "Linux man-pages (unreleased)" +.TH exit 3 (date) "Linux man-pages (unreleased)" .SH NAME exit \- cause normal process termination .SH LIBRARY diff --git a/man3/exp.3 b/man3/exp.3 index d761e07401..625b0b621a 100644 --- a/man3/exp.3 +++ b/man3/exp.3 @@ -13,7 +13,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH EXP 3 (date) "Linux man-pages (unreleased)" +.TH exp 3 (date) "Linux man-pages (unreleased)" .SH NAME exp, expf, expl \- base-e exponential function .SH LIBRARY diff --git a/man3/exp10.3 b/man3/exp10.3 index ca596e4b61..ff826ddf1e 100644 --- a/man3/exp10.3 +++ b/man3/exp10.3 @@ -12,7 +12,7 @@ .\" Modified 1995-08-14 by Arnt Gulbrandsen .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) -.TH EXP10 3 (date) "Linux man-pages (unreleased)" +.TH exp10 3 (date) "Linux man-pages (unreleased)" .SH NAME exp10, exp10f, exp10l \- base-10 exponential function .SH LIBRARY diff --git a/man3/exp2.3 b/man3/exp2.3 index e53a2e492a..8220feada7 100644 --- a/man3/exp2.3 +++ b/man3/exp2.3 @@ -13,7 +13,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH EXP2 3 (date) "Linux man-pages (unreleased)" +.TH exp2 3 (date) "Linux man-pages (unreleased)" .SH NAME exp2, exp2f, exp2l \- base-2 exponential function .SH LIBRARY diff --git a/man3/expm1.3 b/man3/expm1.3 index a9b98a145e..333b5ab780 100644 --- a/man3/expm1.3 +++ b/man3/expm1.3 @@ -7,7 +7,7 @@ .\" Modified 2002-07-27 Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH EXPM1 3 (date) "Linux man-pages (unreleased)" +.TH expm1 3 (date) "Linux man-pages (unreleased)" .SH NAME expm1, expm1f, expm1l \- exponential minus 1 .SH LIBRARY diff --git a/man3/fabs.3 b/man3/fabs.3 index b67978a572..f5e7ac033d 100644 --- a/man3/fabs.3 +++ b/man3/fabs.3 @@ -9,7 +9,7 @@ .\" Modified Sat Jul 24 19:42:04 1993 by Rik Faith (faith@cs.unc.edu) .\" Added fabsl, fabsf, aeb, 2001-06-07 .\" -.TH FABS 3 (date) "Linux man-pages (unreleased)" +.TH fabs 3 (date) "Linux man-pages (unreleased)" .SH NAME fabs, fabsf, fabsl \- absolute value of floating-point number .SH LIBRARY diff --git a/man3/fclose.3 b/man3/fclose.3 index 95abe7d8e6..0f93ef334e 100644 --- a/man3/fclose.3 +++ b/man3/fclose.3 @@ -13,7 +13,7 @@ .\" .\" Modified 2000-07-22 by Nicolás Lichtmaier .\" -.TH FCLOSE 3 (date) "Linux man-pages (unreleased)" +.TH fclose 3 (date) "Linux man-pages (unreleased)" .SH NAME fclose \- close a stream .SH LIBRARY diff --git a/man3/fcloseall.3 b/man3/fcloseall.3 index 0a9aaf4634..9292bf4a6b 100644 --- a/man3/fcloseall.3 +++ b/man3/fcloseall.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH FCLOSEALL 3 (date) "Linux man-pages (unreleased)" +.TH fcloseall 3 (date) "Linux man-pages (unreleased)" .SH NAME fcloseall \- close all open streams .SH LIBRARY diff --git a/man3/ferror.3 b/man3/ferror.3 index 6e2818d4a9..8b7032b596 100644 --- a/man3/ferror.3 +++ b/man3/ferror.3 @@ -13,7 +13,7 @@ .\" .\" Converted for Linux, Mon Nov 29 14:24:40 1993, faith@cs.unc.edu .\" -.TH FERROR 3 (date) "Linux man-pages (unreleased)" +.TH ferror 3 (date) "Linux man-pages (unreleased)" .SH NAME clearerr, feof, ferror \- check and reset stream status .SH LIBRARY diff --git a/man3/fexecve.3 b/man3/fexecve.3 index 6bd3736c6f..78b52e0050 100644 --- a/man3/fexecve.3 +++ b/man3/fexecve.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH FEXECVE 3 (date) "Linux man-pages (unreleased)" +.TH fexecve 3 (date) "Linux man-pages (unreleased)" .SH NAME fexecve \- execute program specified via file descriptor .SH LIBRARY diff --git a/man3/fflush.3 b/man3/fflush.3 index 21c44a68e1..36c16eda11 100644 --- a/man3/fflush.3 +++ b/man3/fflush.3 @@ -14,7 +14,7 @@ .\" Modified 2000-07-22 by Nicolás Lichtmaier .\" Modified 2001-10-16 by John Levon .\" -.TH FFLUSH 3 (date) "Linux man-pages (unreleased)" +.TH fflush 3 (date) "Linux man-pages (unreleased)" .SH NAME fflush \- flush a stream .SH LIBRARY diff --git a/man3/ffs.3 b/man3/ffs.3 index eea0c06cf3..f596561007 100644 --- a/man3/ffs.3 +++ b/man3/ffs.3 @@ -10,7 +10,7 @@ .\" .\" Modified 2003 Walter Harms (walter.harms@informatik.uni-oldenburg.de) .\" -.TH FFS 3 (date) "Linux man-pages (unreleased)" +.TH ffs 3 (date) "Linux man-pages (unreleased)" .SH NAME ffs, ffsl, ffsll \- find first bit set in a word .SH LIBRARY diff --git a/man3/fgetc.3 b/man3/fgetc.3 index 40dd382e8a..010fc01703 100644 --- a/man3/fgetc.3 +++ b/man3/fgetc.3 @@ -4,7 +4,7 @@ .\" .\" Modified Wed Jul 28 11:12:07 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Fri Sep 8 15:48:13 1995 by Andries Brouwer (aeb@cwi.nl) -.TH FGETC 3 (date) "Linux man-pages (unreleased)" +.TH fgetc 3 (date) "Linux man-pages (unreleased)" .SH NAME fgetc, fgets, getc, getchar, ungetc \- input of characters and strings .SH LIBRARY diff --git a/man3/fgetgrent.3 b/man3/fgetgrent.3 index 841ec18299..c4e16e2020 100644 --- a/man3/fgetgrent.3 +++ b/man3/fgetgrent.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 19:38:44 1993 by Rik Faith (faith@cs.unc.edu) -.TH FGETGRENT 3 (date) "Linux man-pages (unreleased)" +.TH fgetgrent 3 (date) "Linux man-pages (unreleased)" .SH NAME fgetgrent \- get group file entry .SH LIBRARY diff --git a/man3/fgetpwent.3 b/man3/fgetpwent.3 index 66dab7cb1c..1383fef598 100644 --- a/man3/fgetpwent.3 +++ b/man3/fgetpwent.3 @@ -10,7 +10,7 @@ .\" Modified Sat Jul 24 19:37:37 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Mon May 27 22:40:48 1996 by Martin Schulze (joey@linux.de) .\" -.TH FGETPWENT 3 (date) "Linux man-pages (unreleased)" +.TH fgetpwent 3 (date) "Linux man-pages (unreleased)" .SH NAME fgetpwent \- get password file entry .SH LIBRARY diff --git a/man3/fgetwc.3 b/man3/fgetwc.3 index 8f8190ee3f..93c58cb728 100644 --- a/man3/fgetwc.3 +++ b/man3/fgetwc.3 @@ -10,7 +10,7 @@ .\" ISO/IEC 9899:1999 .\" .\" Modified Tue Oct 16 23:18:40 BST 2001 by John Levon -.TH FGETWC 3 (date) "Linux man-pages (unreleased)" +.TH fgetwc 3 (date) "Linux man-pages (unreleased)" .SH NAME fgetwc, getwc \- read a wide character from a FILE stream .SH LIBRARY diff --git a/man3/fgetws.3 b/man3/fgetws.3 index 644c68e994..24669f9482 100644 --- a/man3/fgetws.3 +++ b/man3/fgetws.3 @@ -10,7 +10,7 @@ .\" ISO/IEC 9899:1999 .\" .\" Modified Tue Oct 16 23:18:40 BST 2001 by John Levon -.TH FGETWS 3 (date) "Linux man-pages (unreleased)" +.TH fgetws 3 (date) "Linux man-pages (unreleased)" .SH NAME fgetws \- read a wide-character string from a FILE stream .SH LIBRARY diff --git a/man3/fileno.3 b/man3/fileno.3 index 68873868cb..737b2d5457 100644 --- a/man3/fileno.3 +++ b/man3/fileno.3 @@ -11,7 +11,7 @@ .\" Converted for Linux, Mon Nov 29 14:24:40 1993, faith@cs.unc.edu .\" Added remark on EBADF for fileno, aeb, 2001-03-22 .\" -.TH FILENO 3 (date) "Linux man-pages (unreleased)" +.TH fileno 3 (date) "Linux man-pages (unreleased)" .SH NAME fileno \- obtain file descriptor of a stdio stream .SH LIBRARY diff --git a/man3/finite.3 b/man3/finite.3 index 1db57cf468..3a67b6b82e 100644 --- a/man3/finite.3 +++ b/man3/finite.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH FINITE 3 (date) "Linux man-pages (unreleased)" +.TH finite 3 (date) "Linux man-pages (unreleased)" .SH NAME finite, finitef, finitel, isinf, isinff, isinfl, isnan, isnanf, isnanl \- BSD floating-point classification functions diff --git a/man3/flockfile.3 b/man3/flockfile.3 index 38f88eb926..d278eb933b 100644 --- a/man3/flockfile.3 +++ b/man3/flockfile.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH FLOCKFILE 3 (date) "Linux man-pages (unreleased)" +.TH flockfile 3 (date) "Linux man-pages (unreleased)" .SH NAME flockfile, ftrylockfile, funlockfile \- lock FILE for stdio .SH LIBRARY diff --git a/man3/floor.3 b/man3/floor.3 index ec59e217b2..92ed018625 100644 --- a/man3/floor.3 +++ b/man3/floor.3 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH FLOOR 3 (date) "Linux man-pages (unreleased)" +.TH floor 3 (date) "Linux man-pages (unreleased)" .SH NAME floor, floorf, floorl \- largest integral value not greater than argument .SH LIBRARY diff --git a/man3/fma.3 b/man3/fma.3 index 781a75060d..831886c06e 100644 --- a/man3/fma.3 +++ b/man3/fma.3 @@ -7,7 +7,7 @@ .\" Modified 2004-11-15, Added further text on FLT_ROUNDS .\" as suggested by AEB and Fabian Kreutz .\" -.TH FMA 3 (date) "Linux man-pages (unreleased)" +.TH fma 3 (date) "Linux man-pages (unreleased)" .SH NAME fma, fmaf, fmal \- floating-point multiply and add .SH LIBRARY diff --git a/man3/fmax.3 b/man3/fmax.3 index 1ded8a7896..d9443ccc78 100644 --- a/man3/fmax.3 +++ b/man3/fmax.3 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH FMAX 3 (date) "Linux man-pages (unreleased)" +.TH fmax 3 (date) "Linux man-pages (unreleased)" .SH NAME fmax, fmaxf, fmaxl \- determine maximum of two floating-point numbers .SH LIBRARY diff --git a/man3/fmemopen.3 b/man3/fmemopen.3 index bcd8ddd04d..ebccfbd09e 100644 --- a/man3/fmemopen.3 +++ b/man3/fmemopen.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH FMEMOPEN 3 (date) "Linux man-pages (unreleased)" +.TH fmemopen 3 (date) "Linux man-pages (unreleased)" .SH NAME fmemopen \- open memory as stream .SH LIBRARY diff --git a/man3/fmin.3 b/man3/fmin.3 index 1faaac0446..76e493e3b7 100644 --- a/man3/fmin.3 +++ b/man3/fmin.3 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH FMIN 3 (date) "Linux man-pages (unreleased)" +.TH fmin 3 (date) "Linux man-pages (unreleased)" .SH NAME fmin, fminf, fminl \- determine minimum of two floating-point numbers .SH LIBRARY diff --git a/man3/fmod.3 b/man3/fmod.3 index 48189fb39e..1b340c61ac 100644 --- a/man3/fmod.3 +++ b/man3/fmod.3 @@ -12,7 +12,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH FMOD 3 (date) "Linux man-pages (unreleased)" +.TH fmod 3 (date) "Linux man-pages (unreleased)" .SH NAME fmod, fmodf, fmodl \- floating-point remainder function .SH LIBRARY diff --git a/man3/fmtmsg.3 b/man3/fmtmsg.3 index 62f1965d5a..848a08a061 100644 --- a/man3/fmtmsg.3 +++ b/man3/fmtmsg.3 @@ -8,7 +8,7 @@ .\" The function is quite complex and deserves an example .\" .\" Polished, aeb, 2003-11-01 -.TH FMTMSG 3 (date) "Linux man-pages (unreleased)" +.TH fmtmsg 3 (date) "Linux man-pages (unreleased)" .SH NAME fmtmsg \- print formatted error messages .SH LIBRARY diff --git a/man3/fnmatch.3 b/man3/fnmatch.3 index 704e951d32..3f67540b39 100644 --- a/man3/fnmatch.3 +++ b/man3/fnmatch.3 @@ -5,7 +5,7 @@ .\" Modified Sat Jul 24 19:35:54 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Mon Oct 16 00:16:29 2000 following Joseph S. Myers .\" -.TH FNMATCH 3 (date) "Linux man-pages (unreleased)" +.TH fnmatch 3 (date) "Linux man-pages (unreleased)" .SH NAME fnmatch \- match filename or pathname .SH LIBRARY diff --git a/man3/fopen.3 b/man3/fopen.3 index 4e7d44cd68..df1f05358e 100644 --- a/man3/fopen.3 +++ b/man3/fopen.3 @@ -13,7 +13,7 @@ .\" Modified, aeb, 960421, 970806 .\" Modified, joey, aeb, 2002-01-03 .\" -.TH FOPEN 3 (date) "Linux man-pages (unreleased)" +.TH fopen 3 (date) "Linux man-pages (unreleased)" .SH NAME fopen, fdopen, freopen \- stream open functions .SH LIBRARY diff --git a/man3/fopencookie.3 b/man3/fopencookie.3 index 1696bc3527..19b29ca53d 100644 --- a/man3/fopencookie.3 +++ b/man3/fopencookie.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH FOPENCOOKIE 3 (date) "Linux man-pages (unreleased)" +.TH fopencookie 3 (date) "Linux man-pages (unreleased)" .SH NAME fopencookie \- opening a custom stream .SH LIBRARY diff --git a/man3/fpathconf.3 b/man3/fpathconf.3 index a09a94f0ad..f643b7ff61 100644 --- a/man3/fpathconf.3 +++ b/man3/fpathconf.3 @@ -19,7 +19,7 @@ .\" _PC_SYMLINK_MAX, .\" _PC_2_SYMLINKS .\" -.TH FPATHCONF 3 (date) "Linux man-pages (unreleased)" +.TH fpathconf 3 (date) "Linux man-pages (unreleased)" .SH NAME fpathconf, pathconf \- get configuration values for files .SH LIBRARY diff --git a/man3/fpclassify.3 b/man3/fpclassify.3 index 031b98bd6b..c4b3004cce 100644 --- a/man3/fpclassify.3 +++ b/man3/fpclassify.3 @@ -5,7 +5,7 @@ .\" This was done with the help of the glibc manual. .\" .\" 2004-10-31, aeb, corrected -.TH FPCLASSIFY 3 (date) "Linux man-pages (unreleased)" +.TH fpclassify 3 (date) "Linux man-pages (unreleased)" .SH NAME fpclassify, isfinite, isnormal, isnan, isinf \- floating-point classification macros diff --git a/man3/fpurge.3 b/man3/fpurge.3 index 0ec8057251..c95d275b69 100644 --- a/man3/fpurge.3 +++ b/man3/fpurge.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH FPURGE 3 (date) "Linux man-pages (unreleased)" +.TH fpurge 3 (date) "Linux man-pages (unreleased)" .SH NAME fpurge, __fpurge \- purge a stream .SH LIBRARY diff --git a/man3/fputwc.3 b/man3/fputwc.3 index d31db14b2c..ff1b81310d 100644 --- a/man3/fputwc.3 +++ b/man3/fputwc.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH FPUTWC 3 (date) "Linux man-pages (unreleased)" +.TH fputwc 3 (date) "Linux man-pages (unreleased)" .SH NAME fputwc, putwc \- write a wide character to a FILE stream .SH LIBRARY diff --git a/man3/fputws.3 b/man3/fputws.3 index 21bf444092..db850140c7 100644 --- a/man3/fputws.3 +++ b/man3/fputws.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH FPUTWS 3 (date) "Linux man-pages (unreleased)" +.TH fputws 3 (date) "Linux man-pages (unreleased)" .SH NAME fputws \- write a wide-character string to a FILE stream .SH LIBRARY diff --git a/man3/fread.3 b/man3/fread.3 index 57e29100f4..aee8fb506a 100644 --- a/man3/fread.3 +++ b/man3/fread.3 @@ -15,7 +15,7 @@ .\" Modified Thu Apr 20 20:43:53 1995 by Jim Van Zandt .\" Modified Fri May 17 10:21:51 1996 by Martin Schulze .\" -.TH FREAD 3 (date) "Linux man-pages (unreleased)" +.TH fread 3 (date) "Linux man-pages (unreleased)" .SH NAME fread, fwrite \- binary stream input/output .SH LIBRARY diff --git a/man3/frexp.3 b/man3/frexp.3 index 245a108074..3ca63a69c9 100644 --- a/man3/frexp.3 +++ b/man3/frexp.3 @@ -10,7 +10,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH FREXP 3 (date) "Linux man-pages (unreleased)" +.TH frexp 3 (date) "Linux man-pages (unreleased)" .SH NAME frexp, frexpf, frexpl \- convert floating-point number to fractional and integral components diff --git a/man3/fseek.3 b/man3/fseek.3 index 2805d003e7..e0fe7162b4 100644 --- a/man3/fseek.3 +++ b/man3/fseek.3 @@ -11,7 +11,7 @@ .\" .\" Converted for Linux, Mon Nov 29 15:22:01 1993, faith@cs.unc.edu .\" -.TH FSEEK 3 (date) "Linux man-pages (unreleased)" +.TH fseek 3 (date) "Linux man-pages (unreleased)" .SH NAME fgetpos, fseek, fsetpos, ftell, rewind \- reposition a stream .SH LIBRARY diff --git a/man3/fseeko.3 b/man3/fseeko.3 index a6c7e2e1bd..7b4c1cce88 100644 --- a/man3/fseeko.3 +++ b/man3/fseeko.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH FSEEKO 3 (date) "Linux man-pages (unreleased)" +.TH fseeko 3 (date) "Linux man-pages (unreleased)" .SH NAME fseeko, ftello \- seek to or report file position .SH LIBRARY diff --git a/man3/ftime.3 b/man3/ftime.3 index 1c91e68cfa..b5d973cc44 100644 --- a/man3/ftime.3 +++ b/man3/ftime.3 @@ -8,7 +8,7 @@ .\" Modified Sun Oct 18 17:31:43 1998 by Andries Brouwer (aeb@cwi.nl) .\" 2008-06-23, mtk, minor rewrites, added some details .\" -.TH FTIME 3 (date) "Linux man-pages (unreleased)" +.TH ftime 3 (date) "Linux man-pages (unreleased)" .SH NAME ftime \- return date and time .SH LIBRARY diff --git a/man3/ftok.3 b/man3/ftok.3 index 1d0ebecb98..3ea6566686 100644 --- a/man3/ftok.3 +++ b/man3/ftok.3 @@ -6,7 +6,7 @@ .\" Changed data type of proj_id; minor fixes .\" aeb: further fixes; added notes. .\" -.TH FTOK 3 (date) "Linux man-pages (unreleased)" +.TH ftok 3 (date) "Linux man-pages (unreleased)" .SH NAME ftok \- convert a pathname and a project identifier to a System V IPC key .SH LIBRARY diff --git a/man3/fts.3 b/man3/fts.3 index 4f97cf9bef..0e78c81b65 100644 --- a/man3/fts.3 +++ b/man3/fts.3 @@ -9,7 +9,7 @@ .\" .\" 2007-12-08, mtk, Converted from mdoc to man macros .\" -.TH FTS 3 (date) "Linux man-pages (unreleased)" +.TH fts 3 (date) "Linux man-pages (unreleased)" .SH NAME fts, fts_open, fts_read, fts_children, fts_set, fts_close \- \ traverse a file hierarchy diff --git a/man3/ftw.3 b/man3/ftw.3 index 4ac422b949..a9eb9d0948 100644 --- a/man3/ftw.3 +++ b/man3/ftw.3 @@ -14,7 +14,7 @@ .\" 2006-05-24, Michael Kerrisk .\" Added an example program. .\" -.TH FTW 3 (date) "Linux man-pages (unreleased)" +.TH ftw 3 (date) "Linux man-pages (unreleased)" .SH NAME ftw, nftw \- file tree walk .SH LIBRARY diff --git a/man3/futimes.3 b/man3/futimes.3 index c158e75c13..5aa5deb981 100644 --- a/man3/futimes.3 +++ b/man3/futimes.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH FUTIMES 3 (date) "Linux man-pages (unreleased)" +.TH futimes 3 (date) "Linux man-pages (unreleased)" .SH NAME futimes, lutimes \- change file timestamps .SH LIBRARY diff --git a/man3/fwide.3 b/man3/fwide.3 index 5e11ad2ade..94746068a9 100644 --- a/man3/fwide.3 +++ b/man3/fwide.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH FWIDE 3 (date) "Linux man-pages (unreleased)" +.TH fwide 3 (date) "Linux man-pages (unreleased)" .SH NAME fwide \- set and determine the orientation of a FILE stream .SH LIBRARY diff --git a/man3/gamma.3 b/man3/gamma.3 index b5843eaa0f..5ef4460126 100644 --- a/man3/gamma.3 +++ b/man3/gamma.3 @@ -4,7 +4,7 @@ .\" .\" Modified 2003-11-18, aeb: historical remarks .\" -.TH GAMMA 3 (date) "Linux man-pages (unreleased)" +.TH gamma 3 (date) "Linux man-pages (unreleased)" .SH NAME gamma, gammaf, gammal \- (logarithm of the) gamma function .SH LIBRARY diff --git a/man3/gcvt.3 b/man3/gcvt.3 index f641e6b7cc..2b6e4d64ae 100644 --- a/man3/gcvt.3 +++ b/man3/gcvt.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 19:32:25 1993 by Rik Faith (faith@cs.unc.edu) -.TH GCVT 3 (date) "Linux man-pages (unreleased)" +.TH gcvt 3 (date) "Linux man-pages (unreleased)" .SH NAME gcvt \- convert a floating-point number to a string .SH LIBRARY diff --git a/man3/get_phys_pages.3 b/man3/get_phys_pages.3 index 5bc017fee9..bb57a40c81 100644 --- a/man3/get_phys_pages.3 +++ b/man3/get_phys_pages.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GET_PHYS_PAGES 3 (date) "Linux man-pages (unreleased)" +.TH get_phys_pages 3 (date) "Linux man-pages (unreleased)" .SH NAME get_phys_pages, get_avphys_pages \- get total and available physical page counts diff --git a/man3/getaddrinfo.3 b/man3/getaddrinfo.3 index 8ab6a56a7f..1c0d81c6cc 100644 --- a/man3/getaddrinfo.3 +++ b/man3/getaddrinfo.3 @@ -21,7 +21,7 @@ .\" FIXME . glibc's 2.9 NEWS file documents DCCP and UDP-lite support .\" and is SCTP support now also there? .\" -.TH GETADDRINFO 3 (date) "Linux man-pages (unreleased)" +.TH getaddrinfo 3 (date) "Linux man-pages (unreleased)" .SH NAME getaddrinfo, freeaddrinfo, gai_strerror \- network address and service translation diff --git a/man3/getaddrinfo_a.3 b/man3/getaddrinfo_a.3 index 4d6e311318..9c1e677860 100644 --- a/man3/getaddrinfo_a.3 +++ b/man3/getaddrinfo_a.3 @@ -7,7 +7,7 @@ .\" References: http://people.redhat.com/drepper/asynchnl.pdf, .\" http://www.imperialviolet.org/2005/06/01/asynchronous-dns-lookups-with-glibc.html .\" -.TH GETADDRINFO_A 3 (date) "Linux man-pages (unreleased)" +.TH getaddrinfo_a 3 (date) "Linux man-pages (unreleased)" .SH NAME getaddrinfo_a, gai_suspend, gai_error, gai_cancel \- asynchronous network address and service translation diff --git a/man3/getcontext.3 b/man3/getcontext.3 index 3be144d126..4b31b17c55 100644 --- a/man3/getcontext.3 +++ b/man3/getcontext.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETCONTEXT 3 (date) "Linux man-pages (unreleased)" +.TH getcontext 3 (date) "Linux man-pages (unreleased)" .SH NAME getcontext, setcontext \- get or set the user context .SH LIBRARY diff --git a/man3/getcwd.3 b/man3/getcwd.3 index 3e4f968da5..213ba18222 100644 --- a/man3/getcwd.3 +++ b/man3/getcwd.3 @@ -9,7 +9,7 @@ .\" Modified Mon Dec 11 13:32:51 MET 2000 by aeb .\" Modified Thu Apr 22 03:49:15 CEST 2002 by Roger Luethi .\" -.TH GETCWD 3 (date) "Linux man-pages (unreleased)" +.TH getcwd 3 (date) "Linux man-pages (unreleased)" .SH NAME getcwd, getwd, get_current_dir_name \- get current working directory .SH LIBRARY diff --git a/man3/getdate.3 b/man3/getdate.3 index 072f45a12d..ea2e93a336 100644 --- a/man3/getdate.3 +++ b/man3/getdate.3 @@ -7,7 +7,7 @@ .\" Modified, 2001-12-26, aeb .\" 2008-09-07, mtk, Various rewrites; added an example program. .\" -.TH GETDATE 3 (date) "Linux man-pages (unreleased)" +.TH getdate 3 (date) "Linux man-pages (unreleased)" .SH NAME getdate, getdate_r \- convert a date-plus-time string to broken-down time .SH LIBRARY diff --git a/man3/getdirentries.3 b/man3/getdirentries.3 index d4c5e5e412..495774d67c 100644 --- a/man3/getdirentries.3 +++ b/man3/getdirentries.3 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETDIRENTRIES 3 (date) "Linux man-pages (unreleased)" +.TH getdirentries 3 (date) "Linux man-pages (unreleased)" .SH NAME getdirentries \- get directory entries in a filesystem-independent format .SH LIBRARY diff --git a/man3/getdtablesize.3 b/man3/getdtablesize.3 index 976d75f392..58be49be55 100644 --- a/man3/getdtablesize.3 +++ b/man3/getdtablesize.3 @@ -4,7 +4,7 @@ .\" .\" Modified 2002-04-15 by Roger Luethi and aeb .\" -.TH GETDTABLESIZE 3 (date) "Linux man-pages (unreleased)" +.TH getdtablesize 3 (date) "Linux man-pages (unreleased)" .SH NAME getdtablesize \- get file descriptor table size .SH LIBRARY diff --git a/man3/getentropy.3 b/man3/getentropy.3 index 0f69d3d581..aa249ad290 100644 --- a/man3/getentropy.3 +++ b/man3/getentropy.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETENTROPY 3 (date) "Linux man-pages (unreleased)" +.TH getentropy 3 (date) "Linux man-pages (unreleased)" .SH NAME getentropy \- fill a buffer with random bytes .SH LIBRARY diff --git a/man3/getenv.3 b/man3/getenv.3 index f96b34b33a..3610fefb41 100644 --- a/man3/getenv.3 +++ b/man3/getenv.3 @@ -10,7 +10,7 @@ .\" Modified Sat Jul 24 19:30:29 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Fri Feb 14 21:47:50 1997 by Andries Brouwer (aeb@cwi.nl) .\" -.TH GETENV 3 (date) "Linux man-pages (unreleased)" +.TH getenv 3 (date) "Linux man-pages (unreleased)" .SH NAME getenv, secure_getenv \- get an environment variable .SH LIBRARY diff --git a/man3/getfsent.3 b/man3/getfsent.3 index ce76de5b3b..a48ee80ded 100644 --- a/man3/getfsent.3 +++ b/man3/getfsent.3 @@ -4,7 +4,7 @@ .\" .\" Inspired by a page written by Walter Harms. .\" -.TH GETFSENT 3 (date) "Linux man-pages (unreleased)" +.TH getfsent 3 (date) "Linux man-pages (unreleased)" .SH NAME getfsent, getfsspec, getfsfile, setfsent, endfsent \- handle fstab entries .SH LIBRARY diff --git a/man3/getgrent.3 b/man3/getgrent.3 index 35d68e2155..bb7e409e3f 100644 --- a/man3/getgrent.3 +++ b/man3/getgrent.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 19:29:54 1993 by Rik Faith (faith@cs.unc.edu) -.TH GETGRENT 3 (date) "Linux man-pages (unreleased)" +.TH getgrent 3 (date) "Linux man-pages (unreleased)" .SH NAME getgrent, setgrent, endgrent \- get group file entry .SH LIBRARY diff --git a/man3/getgrent_r.3 b/man3/getgrent_r.3 index 2418d58f28..3298865ccf 100644 --- a/man3/getgrent_r.3 +++ b/man3/getgrent_r.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH GETGRENT_R 3 (date) "Linux man-pages (unreleased)" +.TH getgrent_r 3 (date) "Linux man-pages (unreleased)" .SH NAME getgrent_r, fgetgrent_r \- get group file entry reentrantly .SH LIBRARY diff --git a/man3/getgrnam.3 b/man3/getgrnam.3 index d698a6a573..73e5a34df5 100644 --- a/man3/getgrnam.3 +++ b/man3/getgrnam.3 @@ -10,7 +10,7 @@ .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu) .\" Modified 2003-11-15 by aeb .\" -.TH GETGRNAM 3 (date) "Linux man-pages (unreleased)" +.TH getgrnam 3 (date) "Linux man-pages (unreleased)" .SH NAME getgrnam, getgrnam_r, getgrgid, getgrgid_r \- get group file entry .SH LIBRARY diff --git a/man3/getgrouplist.3 b/man3/getgrouplist.3 index 50a4b58ba0..5f3b1f8d30 100644 --- a/man3/getgrouplist.3 +++ b/man3/getgrouplist.3 @@ -6,7 +6,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETGROUPLIST 3 (date) "Linux man-pages (unreleased)" +.TH getgrouplist 3 (date) "Linux man-pages (unreleased)" .SH NAME getgrouplist \- get list of groups to which a user belongs .SH LIBRARY diff --git a/man3/gethostbyname.3 b/man3/gethostbyname.3 index 50d5cf65b3..39e8c2a1fd 100644 --- a/man3/gethostbyname.3 +++ b/man3/gethostbyname.3 @@ -15,7 +15,7 @@ .\" Modified 2002-08-05, Michael Kerrisk .\" Modified 2004-10-31, Andries Brouwer .\" -.TH GETHOSTBYNAME 3 (date) "Linux man-pages (unreleased)" +.TH gethostbyname 3 (date) "Linux man-pages (unreleased)" .SH NAME gethostbyname, gethostbyaddr, sethostent, gethostent, endhostent, h_errno, diff --git a/man3/gethostid.3 b/man3/gethostid.3 index 8c39935811..a438ea580d 100644 --- a/man3/gethostid.3 +++ b/man3/gethostid.3 @@ -6,7 +6,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" Modified Tue Oct 22 00:22:35 EDT 1996 by Eric S. Raymond -.TH GETHOSTID 3 (date) "Linux man-pages (unreleased)" +.TH gethostid 3 (date) "Linux man-pages (unreleased)" .SH NAME gethostid, sethostid \- get or set the unique identifier of the current host .SH LIBRARY diff --git a/man3/getifaddrs.3 b/man3/getifaddrs.3 index 7ad59e1bb5..ffd77ab6b6 100644 --- a/man3/getifaddrs.3 +++ b/man3/getifaddrs.3 @@ -13,7 +13,7 @@ .\" for glibc specificities, provide an example. .\" 2009-01-14 mtk, many edits and changes, rewrote example program. .\" -.TH GETIFADDRS 3 (date) "Linux man-pages (unreleased)" +.TH getifaddrs 3 (date) "Linux man-pages (unreleased)" .SH NAME getifaddrs, freeifaddrs \- get interface addresses .SH LIBRARY diff --git a/man3/getipnodebyname.3 b/man3/getipnodebyname.3 index d69aead2a9..6e60cee2ee 100644 --- a/man3/getipnodebyname.3 +++ b/man3/getipnodebyname.3 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" References: RFC 2553 -.TH GETIPNODEBYNAME 3 (date) "Linux man-pages (unreleased)" +.TH getipnodebyname 3 (date) "Linux man-pages (unreleased)" .SH NAME getipnodebyname, getipnodebyaddr, freehostent \- get network hostnames and addresses diff --git a/man3/getline.3 b/man3/getline.3 index adb93e10f8..e71994d6f3 100644 --- a/man3/getline.3 +++ b/man3/getline.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETLINE 3 (date) "Linux man-pages (unreleased)" +.TH getline 3 (date) "Linux man-pages (unreleased)" .SH NAME getline, getdelim \- delimited string input .SH LIBRARY diff --git a/man3/getloadavg.3 b/man3/getloadavg.3 index c083c80e56..15bbabdc53 100644 --- a/man3/getloadavg.3 +++ b/man3/getloadavg.3 @@ -7,7 +7,7 @@ .\" .\" 2007-12-08, mtk, Converted from mdoc to man macros .\" -.TH GETLOADAVG 3 (date) "Linux man-pages (unreleased)" +.TH getloadavg 3 (date) "Linux man-pages (unreleased)" .SH NAME getloadavg \- get system load averages .SH LIBRARY diff --git a/man3/getlogin.3 b/man3/getlogin.3 index 5cbda1d4db..7658c615f1 100644 --- a/man3/getlogin.3 +++ b/man3/getlogin.3 @@ -5,7 +5,7 @@ .\" Changed Tue Sep 19 01:49:29 1995, aeb: moved from man2 to man3 .\" added ref to /etc/utmp, added BUGS section, etc. .\" modified 2003 Walter Harms, aeb - added getlogin_r, note on stdin use -.TH GETLOGIN 3 (date) "Linux man-pages (unreleased)" +.TH getlogin 3 (date) "Linux man-pages (unreleased)" .SH NAME getlogin, getlogin_r, cuserid \- get username .SH LIBRARY diff --git a/man3/getmntent.3 b/man3/getmntent.3 index b4ff181a09..7900f1ae96 100644 --- a/man3/getmntent.3 +++ b/man3/getmntent.3 @@ -9,7 +9,7 @@ .\" Modified Sat Jul 24 21:46:57 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified 961109, 031115, aeb .\" -.TH GETMNTENT 3 (date) "Linux man-pages (unreleased)" +.TH getmntent 3 (date) "Linux man-pages (unreleased)" .SH NAME getmntent, setmntent, addmntent, endmntent, hasmntopt, getmntent_r \- get filesystem descriptor file entry diff --git a/man3/getnameinfo.3 b/man3/getnameinfo.3 index a65680d48c..02b0a16392 100644 --- a/man3/getnameinfo.3 +++ b/man3/getnameinfo.3 @@ -7,7 +7,7 @@ .\" 2004-12-14, mtk, Added EAI_OVERFLOW error .\" 2004-12-14 Fixed description of error return .\" -.TH GETNAMEINFO 3 (date) "Linux man-pages (unreleased)" +.TH getnameinfo 3 (date) "Linux man-pages (unreleased)" .SH NAME getnameinfo \- address-to-name translation in protocol-independent manner .SH LIBRARY diff --git a/man3/getnetent.3 b/man3/getnetent.3 index f74a83f655..5e03eba27f 100644 --- a/man3/getnetent.3 +++ b/man3/getnetent.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 21:48:06 1993 by Rik Faith (faith@cs.unc.edu) -.TH GETNETENT 3 (date) "Linux man-pages (unreleased)" +.TH getnetent 3 (date) "Linux man-pages (unreleased)" .SH NAME getnetent, getnetbyname, getnetbyaddr, setnetent, endnetent \- get network entry diff --git a/man3/getnetent_r.3 b/man3/getnetent_r.3 index 3049afe2c2..28a7d7d24f 100644 --- a/man3/getnetent_r.3 +++ b/man3/getnetent_r.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETNETENT_R 3 (date) "Linux man-pages (unreleased)" +.TH getnetent_r 3 (date) "Linux man-pages (unreleased)" .SH NAME getnetent_r, getnetbyname_r, getnetbyaddr_r \- get network entry (reentrant) diff --git a/man3/getopt.3 b/man3/getopt.3 index 5b9dcc5daf..9cfde37e6c 100644 --- a/man3/getopt.3 +++ b/man3/getopt.3 @@ -19,7 +19,7 @@ .\" the start of optstring .\" Modified 2006-12-15, mtk, Added getopt() example program. .\" -.TH GETOPT 3 (date) "Linux man-pages (unreleased)" +.TH getopt 3 (date) "Linux man-pages (unreleased)" .SH NAME getopt, getopt_long, getopt_long_only, optarg, optind, opterr, optopt \- Parse command-line options diff --git a/man3/getpass.3 b/man3/getpass.3 index deed107c34..bc46ce440f 100644 --- a/man3/getpass.3 +++ b/man3/getpass.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH GETPASS 3 (date) "Linux man-pages (unreleased)" +.TH getpass 3 (date) "Linux man-pages (unreleased)" .SH NAME getpass \- get a password .SH LIBRARY diff --git a/man3/getprotoent.3 b/man3/getprotoent.3 index 231f44cee1..732fcc40f4 100644 --- a/man3/getprotoent.3 +++ b/man3/getprotoent.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 19:26:03 1993 by Rik Faith (faith@cs.unc.edu) -.TH GETPROTOENT 3 (date) "Linux man-pages (unreleased)" +.TH getprotoent 3 (date) "Linux man-pages (unreleased)" .SH NAME getprotoent, getprotobyname, getprotobynumber, setprotoent, endprotoent \- get protocol entry diff --git a/man3/getprotoent_r.3 b/man3/getprotoent_r.3 index 9a3ceffc73..bef4484675 100644 --- a/man3/getprotoent_r.3 +++ b/man3/getprotoent_r.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETPROTOENT_R 3 (date) "Linux man-pages (unreleased)" +.TH getprotoent_r 3 (date) "Linux man-pages (unreleased)" .SH NAME getprotoent_r, getprotobyname_r, getprotobynumber_r \- get protocol entry (reentrant) diff --git a/man3/getpt.3 b/man3/getpt.3 index e47c203e66..76443e24ef 100644 --- a/man3/getpt.3 +++ b/man3/getpt.3 @@ -4,7 +4,7 @@ .\" Redistribute and modify at will. .\" %%%LICENSE_END .\" -.TH GETPT 3 (date) "Linux man-pages (unreleased)" +.TH getpt 3 (date) "Linux man-pages (unreleased)" .SH NAME getpt \- open a new pseudoterminal master .SH LIBRARY diff --git a/man3/getpw.3 b/man3/getpw.3 index a92b0f1406..5cc7ba7368 100644 --- a/man3/getpw.3 +++ b/man3/getpw.3 @@ -9,7 +9,7 @@ .\" Modified Sat Jul 24 19:23:25 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Mon May 27 21:37:47 1996 by Martin Schulze (joey@linux.de) .\" -.TH GETPW 3 (date) "Linux man-pages (unreleased)" +.TH getpw 3 (date) "Linux man-pages (unreleased)" .SH NAME getpw \- reconstruct password line entry .SH LIBRARY diff --git a/man3/getpwent.3 b/man3/getpwent.3 index b7c892a9d5..e236aeea8e 100644 --- a/man3/getpwent.3 +++ b/man3/getpwent.3 @@ -10,7 +10,7 @@ .\" Modified Sat Jul 24 19:22:14 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Mon May 27 21:37:47 1996 by Martin Schulze (joey@linux.de) .\" -.TH GETPWENT 3 (date) "Linux man-pages (unreleased)" +.TH getpwent 3 (date) "Linux man-pages (unreleased)" .SH NAME getpwent, setpwent, endpwent \- get password file entry .SH LIBRARY diff --git a/man3/getpwent_r.3 b/man3/getpwent_r.3 index c80ce55f71..516517ace8 100644 --- a/man3/getpwent_r.3 +++ b/man3/getpwent_r.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH GETPWENT_R 3 (date) "Linux man-pages (unreleased)" +.TH getpwent_r 3 (date) "Linux man-pages (unreleased)" .SH NAME getpwent_r, fgetpwent_r \- get passwd file entry reentrantly .SH LIBRARY diff --git a/man3/getpwnam.3 b/man3/getpwnam.3 index b0e361a892..7a6474e019 100644 --- a/man3/getpwnam.3 +++ b/man3/getpwnam.3 @@ -14,7 +14,7 @@ .\" Modified 2003-11-15 by aeb .\" 2008-11-07, mtk, Added an example program for getpwnam_r(). .\" -.TH GETPWNAM 3 (date) "Linux man-pages (unreleased)" +.TH getpwnam 3 (date) "Linux man-pages (unreleased)" .SH NAME getpwnam, getpwnam_r, getpwuid, getpwuid_r \- get password file entry .SH LIBRARY diff --git a/man3/getrpcent.3 b/man3/getrpcent.3 index 498a58a1d4..9fc1114dee 100644 --- a/man3/getrpcent.3 +++ b/man3/getrpcent.3 @@ -5,7 +5,7 @@ .\" %%%LICENSE_END .\" .\" @(#)getrpcent.3n 2.2 88/08/02 4.0 RPCSRC; from 1.11 88/03/14 SMI -.TH GETRPCENT 3 (date) "Linux man-pages (unreleased)" +.TH getrpcent 3 (date) "Linux man-pages (unreleased)" .SH NAME getrpcent, getrpcbyname, getrpcbynumber, setrpcent, endrpcent \- get RPC entry diff --git a/man3/getrpcent_r.3 b/man3/getrpcent_r.3 index 8eec0cc28b..081e1147a3 100644 --- a/man3/getrpcent_r.3 +++ b/man3/getrpcent_r.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETRPCENT_R 3 (date) "Linux man-pages (unreleased)" +.TH getrpcent_r 3 (date) "Linux man-pages (unreleased)" .SH NAME getrpcent_r, getrpcbyname_r, getrpcbynumber_r \- get RPC entry (reentrant) diff --git a/man3/getrpcport.3 b/man3/getrpcport.3 index 52c331a530..ee3fc341d8 100644 --- a/man3/getrpcport.3 +++ b/man3/getrpcport.3 @@ -5,7 +5,7 @@ .\" %%%LICENSE_END .\" .\" @(#)getrpcport.3r 2.2 88/08/02 4.0 RPCSRC; from 1.12 88/02/26 SMI -.TH GETRPCPORT 3 (date) "Linux man-pages (unreleased)" +.TH getrpcport 3 (date) "Linux man-pages (unreleased)" .SH NAME getrpcport \- get RPC port number .SH LIBRARY diff --git a/man3/gets.3 b/man3/gets.3 index 49ec1fd1ef..e50613c9c6 100644 --- a/man3/gets.3 +++ b/man3/gets.3 @@ -6,7 +6,7 @@ .\" Modified Fri Sep 8 15:48:13 1995 by Andries Brouwer (aeb@cwi.nl) .\" Modified 2013-12-31, David Malcolm .\" Split gets(3) into its own page; fgetc() et al. move to fgetc(3) -.TH GETS 3 (date) "Linux man-pages (unreleased)" +.TH gets 3 (date) "Linux man-pages (unreleased)" .SH NAME gets \- get a string from standard input (DEPRECATED) .SH LIBRARY diff --git a/man3/getservent.3 b/man3/getservent.3 index 9781268568..53d16b1d56 100644 --- a/man3/getservent.3 +++ b/man3/getservent.3 @@ -11,7 +11,7 @@ .\" Modified Mon Apr 22 01:50:54 1996 by Martin Schulze .\" 2001-07-25 added a clause about NULL proto (Martin Michlmayr or David N. Welton) .\" -.TH GETSERVENT 3 (date) "Linux man-pages (unreleased)" +.TH getservent 3 (date) "Linux man-pages (unreleased)" .SH NAME getservent, getservbyname, getservbyport, setservent, endservent \- get service entry diff --git a/man3/getservent_r.3 b/man3/getservent_r.3 index 242fdf29b6..c403311e3e 100644 --- a/man3/getservent_r.3 +++ b/man3/getservent_r.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETSERVENT_R 3 (date) "Linux man-pages (unreleased)" +.TH getservent_r 3 (date) "Linux man-pages (unreleased)" .SH NAME getservent_r, getservbyname_r, getservbyport_r \- get service entry (reentrant) diff --git a/man3/getspnam.3 b/man3/getspnam.3 index eac1ceda12..06d703c36c 100644 --- a/man3/getspnam.3 +++ b/man3/getspnam.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH GETSPNAM 3 (date) "Linux man-pages (unreleased)" +.TH getspnam 3 (date) "Linux man-pages (unreleased)" .SH NAME getspnam, getspnam_r, getspent, getspent_r, setspent, endspent, fgetspent, fgetspent_r, sgetspent, sgetspent_r, putspent, diff --git a/man3/getsubopt.3 b/man3/getsubopt.3 index 3ff137abd6..6b9c118835 100644 --- a/man3/getsubopt.3 +++ b/man3/getsubopt.3 @@ -22,7 +22,7 @@ .\" SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. .\" %%%LICENSE_END .\" -.TH GETSUBOPT 3 (date) "Linux man-pages (unreleased)" +.TH getsubopt 3 (date) "Linux man-pages (unreleased)" .SH NAME getsubopt \- parse suboption arguments from a string .SH LIBRARY diff --git a/man3/getttyent.3 b/man3/getttyent.3 index f77ca8bccb..f59f8d53fe 100644 --- a/man3/getttyent.3 +++ b/man3/getttyent.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH GETTTYENT 3 (date) "Linux man-pages (unreleased)" +.TH getttyent 3 (date) "Linux man-pages (unreleased)" .SH NAME getttyent, getttynam, setttyent, endttyent \- get ttys file entry .SH LIBRARY diff --git a/man3/getusershell.3 b/man3/getusershell.3 index 82f22a1219..9fd8032c26 100644 --- a/man3/getusershell.3 +++ b/man3/getusershell.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 19:17:53 1993 by Rik Faith (faith@cs.unc.edu) -.TH GETUSERSHELL 3 (date) "Linux man-pages (unreleased)" +.TH getusershell 3 (date) "Linux man-pages (unreleased)" .SH NAME getusershell, setusershell, endusershell \- get permitted user shells .SH LIBRARY diff --git a/man3/getutent.3 b/man3/getutent.3 index de7e918f40..83bd36b8d8 100644 --- a/man3/getutent.3 +++ b/man3/getutent.3 @@ -9,7 +9,7 @@ .\" Modified Thu Jul 25 14:43:46 MET DST 1996 by Michael Haardt .\" .\" -.TH GETUTENT 3 (date) "Linux man-pages (unreleased)" +.TH getutent 3 (date) "Linux man-pages (unreleased)" .SH NAME getutent, getutid, getutline, pututline, setutent, endutent, utmpname \- access utmp file entries diff --git a/man3/getutmp.3 b/man3/getutmp.3 index 5e9a9db8bf..6c7c14fd4c 100644 --- a/man3/getutmp.3 +++ b/man3/getutmp.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETUTMP 3 (date) "Linux man-pages (unreleased)" +.TH getutmp 3 (date) "Linux man-pages (unreleased)" .SH NAME getutmp, getutmpx \- copy utmp structure to utmpx, and vice versa .SH LIBRARY diff --git a/man3/getw.3 b/man3/getw.3 index 5695cb1a40..5692ad247f 100644 --- a/man3/getw.3 +++ b/man3/getw.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GETW 3 (date) "Linux man-pages (unreleased)" +.TH getw 3 (date) "Linux man-pages (unreleased)" .SH NAME getw, putw \- input and output of words (ints) .SH LIBRARY diff --git a/man3/getwchar.3 b/man3/getwchar.3 index dbf24ea36b..f44f36da8c 100644 --- a/man3/getwchar.3 +++ b/man3/getwchar.3 @@ -9,7 +9,7 @@ .\" http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH GETWCHAR 3 (date) "Linux man-pages (unreleased)" +.TH getwchar 3 (date) "Linux man-pages (unreleased)" .SH NAME getwchar \- read a wide character from standard input .SH LIBRARY diff --git a/man3/glob.3 b/man3/glob.3 index 3febaf3b72..231e5f171d 100644 --- a/man3/glob.3 +++ b/man3/glob.3 @@ -11,7 +11,7 @@ .\" Expanded the description of various flags .\" Various wording fixes. .\" -.TH GLOB 3 (date) "Linux man-pages (unreleased)" +.TH glob 3 (date) "Linux man-pages (unreleased)" .SH NAME glob, globfree \- find pathnames matching a pattern, free memory from glob() .SH LIBRARY diff --git a/man3/gnu_get_libc_version.3 b/man3/gnu_get_libc_version.3 index 6ebe1206a9..0fd99d21c9 100644 --- a/man3/gnu_get_libc_version.3 +++ b/man3/gnu_get_libc_version.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GNU_GET_LIBC_VERSION 3 (date) "Linux man-pages (unreleased)" +.TH gnu_get_libc_version 3 (date) "Linux man-pages (unreleased)" .SH NAME gnu_get_libc_version, gnu_get_libc_release \- get glibc version and release .SH LIBRARY diff --git a/man3/grantpt.3 b/man3/grantpt.3 index 103ac2122d..ac373a6c4f 100644 --- a/man3/grantpt.3 +++ b/man3/grantpt.3 @@ -2,7 +2,7 @@ .\" This page is in the public domain. - aeb .\" %%%LICENSE_END .\" -.TH GRANTPT 3 (date) "Linux man-pages (unreleased)" +.TH grantpt 3 (date) "Linux man-pages (unreleased)" .SH NAME grantpt \- grant access to the slave pseudoterminal .SH LIBRARY diff --git a/man3/group_member.3 b/man3/group_member.3 index 4f3615c3ae..ed07191900 100644 --- a/man3/group_member.3 +++ b/man3/group_member.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH GROUP_MEMBER 3 (date) "Linux man-pages (unreleased)" +.TH group_member 3 (date) "Linux man-pages (unreleased)" .SH NAME group_member \- test whether a process is in a group .SH LIBRARY diff --git a/man3/gsignal.3 b/man3/gsignal.3 index ace0868584..82585d1045 100644 --- a/man3/gsignal.3 +++ b/man3/gsignal.3 @@ -4,7 +4,7 @@ .\" .\" This replaces an earlier man page written by Walter Harms .\" . -.TH GSIGNAL 3 (date) "Linux man-pages (unreleased)" +.TH gsignal 3 (date) "Linux man-pages (unreleased)" .SH NAME gsignal, ssignal \- software signal facility .SH LIBRARY diff --git a/man3/hash.3 b/man3/hash.3 index 8750c8addc..03bd1095a8 100644 --- a/man3/hash.3 +++ b/man3/hash.3 @@ -5,7 +5,7 @@ .\" .\" @(#)hash.3 8.6 (Berkeley) 8/18/94 .\" -.TH HASH 3 (date) "Linux man-pages (unreleased)" +.TH hash 3 (date) "Linux man-pages (unreleased)" .UC 7 .SH NAME hash \- hash database access method diff --git a/man3/hsearch.3 b/man3/hsearch.3 index 2d5ae95ab0..5c9836a822 100644 --- a/man3/hsearch.3 +++ b/man3/hsearch.3 @@ -13,7 +13,7 @@ .\" 2008-09-03, mtk, restructured somewhat, in part after suggestions from .\" Timothy S. Nelson .\" -.TH HSEARCH 3 (date) "Linux man-pages (unreleased)" +.TH hsearch 3 (date) "Linux man-pages (unreleased)" .SH NAME hcreate, hdestroy, hsearch, hcreate_r, hdestroy_r, hsearch_r \- hash table management diff --git a/man3/iconv.3 b/man3/iconv.3 index 2bb37cde2e..bc634624d6 100644 --- a/man3/iconv.3 +++ b/man3/iconv.3 @@ -10,7 +10,7 @@ .\" 2000-06-30 correction by Yuichi SATO .\" 2000-11-15 aeb, fixed prototype .\" -.TH ICONV 3 (date) "Linux man-pages (unreleased)" +.TH iconv 3 (date) "Linux man-pages (unreleased)" .SH NAME iconv \- perform character set conversion .SH LIBRARY diff --git a/man3/iconv_close.3 b/man3/iconv_close.3 index 40e04a647a..edebbd03af 100644 --- a/man3/iconv_close.3 +++ b/man3/iconv_close.3 @@ -6,7 +6,7 @@ .\" GNU glibc-2 source code and manual .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" -.TH ICONV_CLOSE 3 (date) "Linux man-pages (unreleased)" +.TH iconv_close 3 (date) "Linux man-pages (unreleased)" .SH NAME iconv_close \- deallocate descriptor for character set conversion .SH LIBRARY diff --git a/man3/iconv_open.3 b/man3/iconv_open.3 index 25f448709b..939fe011bd 100644 --- a/man3/iconv_open.3 +++ b/man3/iconv_open.3 @@ -10,7 +10,7 @@ .\" 2007-03-31 Bruno Haible, Describe the glibc/libiconv //TRANSLIT .\" and //IGNORE extensions for 'tocode'. .\" -.TH ICONV_OPEN 3 (date) "Linux man-pages (unreleased)" +.TH iconv_open 3 (date) "Linux man-pages (unreleased)" .SH NAME iconv_open \- allocate descriptor for character set conversion .SH LIBRARY diff --git a/man3/if_nameindex.3 b/man3/if_nameindex.3 index 19e9107fb2..b8912f0f5d 100644 --- a/man3/if_nameindex.3 +++ b/man3/if_nameindex.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH IF_NAMEINDEX 3 (date) "Linux man-pages (unreleased)" +.TH if_nameindex 3 (date) "Linux man-pages (unreleased)" .SH NAME if_nameindex, if_freenameindex \- get network interface names and indexes .SH LIBRARY diff --git a/man3/if_nametoindex.3 b/man3/if_nametoindex.3 index 4ad2f19d60..281360d3f5 100644 --- a/man3/if_nametoindex.3 +++ b/man3/if_nametoindex.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH IF_NAMETOINDEX 3 (date) "Linux man-pages (unreleased)" +.TH if_nametoindex 3 (date) "Linux man-pages (unreleased)" .SH NAME if_nametoindex, if_indextoname \- mappings between network interface names and indexes diff --git a/man3/ilogb.3 b/man3/ilogb.3 index acdcb4034a..5145ace5e7 100644 --- a/man3/ilogb.3 +++ b/man3/ilogb.3 @@ -6,7 +6,7 @@ .\" .\" Inspired by a page by Walter Harms created 2002-08-10 .\" -.TH ILOGB 3 (date) "Linux man-pages (unreleased)" +.TH ilogb 3 (date) "Linux man-pages (unreleased)" .SH NAME ilogb, ilogbf, ilogbl \- get integer exponent of a floating-point value .SH LIBRARY diff --git a/man3/index.3 b/man3/index.3 index 4dd9aab213..f9ab98245f 100644 --- a/man3/index.3 +++ b/man3/index.3 @@ -8,7 +8,7 @@ .\" 386BSD man pages .\" Modified Mon Apr 12 12:54:34 1993, David Metcalfe .\" Modified Sat Jul 24 19:13:52 1993, Rik Faith (faith@cs.unc.edu) -.TH INDEX 3 (date) "Linux man-pages (unreleased)" +.TH index 3 (date) "Linux man-pages (unreleased)" .SH NAME index, rindex \- locate character in string .SH LIBRARY diff --git a/man3/inet_net_pton.3 b/man3/inet_net_pton.3 index 9c8abd7383..1db845582a 100644 --- a/man3/inet_net_pton.3 +++ b/man3/inet_net_pton.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH INET_NET_PTON 3 (date) "Linux man-pages (unreleased)" +.TH inet_net_pton 3 (date) "Linux man-pages (unreleased)" .SH NAME inet_net_pton, inet_net_ntop \- Internet network number conversion .SH LIBRARY diff --git a/man3/inet_ntop.3 b/man3/inet_ntop.3 index 0d24b111aa..b344a0c899 100644 --- a/man3/inet_ntop.3 +++ b/man3/inet_ntop.3 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" References: RFC 2553 -.TH INET_NTOP 3 (date) "Linux man-pages (unreleased)" +.TH inet_ntop 3 (date) "Linux man-pages (unreleased)" .SH NAME inet_ntop \- convert IPv4 and IPv6 addresses from binary to text form .SH LIBRARY diff --git a/man3/inet_pton.3 b/man3/inet_pton.3 index 5560c84ce1..c0aa673f4c 100644 --- a/man3/inet_pton.3 +++ b/man3/inet_pton.3 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" References: RFC 2553 -.TH INET_PTON 3 (date) "Linux man-pages (unreleased)" +.TH inet_pton 3 (date) "Linux man-pages (unreleased)" .SH NAME inet_pton \- convert IPv4 and IPv6 addresses from text to binary form .SH LIBRARY diff --git a/man3/initgroups.3 b/man3/initgroups.3 index 7c678f037f..ef0ea3c522 100644 --- a/man3/initgroups.3 +++ b/man3/initgroups.3 @@ -9,7 +9,7 @@ .\" Modified 1993-07-24 by Rik Faith .\" Modified 2004-10-10 by aeb .\" -.TH INITGROUPS 3 (date) "Linux man-pages (unreleased)" +.TH initgroups 3 (date) "Linux man-pages (unreleased)" .SH NAME initgroups \- initialize the supplementary group access list .SH LIBRARY diff --git a/man3/insque.3 b/man3/insque.3 index 4cf4fcb176..7570e1a312 100644 --- a/man3/insque.3 +++ b/man3/insque.3 @@ -13,7 +13,7 @@ .\" mtk, 2010-09-09: Noted glibc 2.4 bug, added info on circular .\" lists, added example program .\" -.TH INSQUE 3 (date) "Linux man-pages (unreleased)" +.TH insque 3 (date) "Linux man-pages (unreleased)" .SH NAME insque, remque \- insert/remove an item from a queue .SH LIBRARY diff --git a/man3/intro.3 b/man3/intro.3 index 0cd1cf96a0..ce0d6e294b 100644 --- a/man3/intro.3 +++ b/man3/intro.3 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" 2007-10-23 mtk, Nearly a complete rewrite of the earlier page. -.TH INTRO 3 (date) "Linux man-pages (unreleased)" +.TH intro 3 (date) "Linux man-pages (unreleased)" .SH NAME intro \- introduction to library functions .SH DESCRIPTION diff --git a/man3/isalpha.3 b/man3/isalpha.3 index 750c3bd6a3..3b0b6b4b3c 100644 --- a/man3/isalpha.3 +++ b/man3/isalpha.3 @@ -7,7 +7,7 @@ .\" Modified Sat Sep 2 21:52:01 1995 by Jim Van Zandt .\" Modified Mon May 27 22:55:26 1996 by Martin Schulze (joey@linux.de) .\" -.TH ISALPHA 3 (date) "Linux man-pages (unreleased)" +.TH isalpha 3 (date) "Linux man-pages (unreleased)" .SH NAME isalnum, isalpha, isascii, isblank, iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace, isupper, isxdigit, diff --git a/man3/isatty.3 b/man3/isatty.3 index d58a70c6c5..5438a0db38 100644 --- a/man3/isatty.3 +++ b/man3/isatty.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH ISATTY 3 (date) "Linux man-pages (unreleased)" +.TH isatty 3 (date) "Linux man-pages (unreleased)" .SH NAME isatty \- test whether a file descriptor refers to a terminal .SH LIBRARY diff --git a/man3/isfdtype.3 b/man3/isfdtype.3 index 034ce59a4b..e2fa13e274 100644 --- a/man3/isfdtype.3 +++ b/man3/isfdtype.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH ISFDTYPE 3 (date) "Linux man-pages (unreleased)" +.TH isfdtype 3 (date) "Linux man-pages (unreleased)" .SH NAME isfdtype \- test file type of a file descriptor .SH LIBRARY diff --git a/man3/isgreater.3 b/man3/isgreater.3 index 968d68f794..d352c97aec 100644 --- a/man3/isgreater.3 +++ b/man3/isgreater.3 @@ -5,7 +5,7 @@ .\" 2002-07-27 Walter Harms .\" this was done with the help of the glibc manual .\" -.TH ISGREATER 3 (date) "Linux man-pages (unreleased)" +.TH isgreater 3 (date) "Linux man-pages (unreleased)" .SH NAME isgreater, isgreaterequal, isless, islessequal, islessgreater, isunordered \- floating-point relational tests without exception for NaN diff --git a/man3/iswalnum.3 b/man3/iswalnum.3 index d13710c6a3..d6ecd19c6a 100644 --- a/man3/iswalnum.3 +++ b/man3/iswalnum.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH ISWALNUM 3 (date) "Linux man-pages (unreleased)" +.TH iswalnum 3 (date) "Linux man-pages (unreleased)" .SH NAME iswalnum \- test for alphanumeric wide character .SH LIBRARY diff --git a/man3/iswalpha.3 b/man3/iswalpha.3 index b36662b964..d374c08e6a 100644 --- a/man3/iswalpha.3 +++ b/man3/iswalpha.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH ISWALPHA 3 (date) "Linux man-pages (unreleased)" +.TH iswalpha 3 (date) "Linux man-pages (unreleased)" .SH NAME iswalpha \- test for alphabetic wide character .SH LIBRARY diff --git a/man3/iswblank.3 b/man3/iswblank.3 index 90aea13245..d3351ab6cf 100644 --- a/man3/iswblank.3 +++ b/man3/iswblank.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH ISWBLANK 3 (date) "Linux man-pages (unreleased)" +.TH iswblank 3 (date) "Linux man-pages (unreleased)" .SH NAME iswblank \- test for whitespace wide character .SH LIBRARY diff --git a/man3/iswcntrl.3 b/man3/iswcntrl.3 index 53a0e19c76..3b273cf067 100644 --- a/man3/iswcntrl.3 +++ b/man3/iswcntrl.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH ISWCNTRL 3 (date) "Linux man-pages (unreleased)" +.TH iswcntrl 3 (date) "Linux man-pages (unreleased)" .SH NAME iswcntrl \- test for control wide character .SH LIBRARY diff --git a/man3/iswctype.3 b/man3/iswctype.3 index f02bc418cc..8c26fd5644 100644 --- a/man3/iswctype.3 +++ b/man3/iswctype.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH ISWCTYPE 3 (date) "Linux man-pages (unreleased)" +.TH iswctype 3 (date) "Linux man-pages (unreleased)" .SH NAME iswctype \- wide-character classification .SH LIBRARY diff --git a/man3/iswdigit.3 b/man3/iswdigit.3 index 9cb1808f63..8e23e24e5d 100644 --- a/man3/iswdigit.3 +++ b/man3/iswdigit.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH ISWDIGIT 3 (date) "Linux man-pages (unreleased)" +.TH iswdigit 3 (date) "Linux man-pages (unreleased)" .SH NAME iswdigit \- test for decimal digit wide character .SH LIBRARY diff --git a/man3/iswgraph.3 b/man3/iswgraph.3 index d03f6bba81..570e5d506f 100644 --- a/man3/iswgraph.3 +++ b/man3/iswgraph.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH ISWGRAPH 3 (date) "Linux man-pages (unreleased)" +.TH iswgraph 3 (date) "Linux man-pages (unreleased)" .SH NAME iswgraph \- test for graphic wide character .SH LIBRARY diff --git a/man3/iswlower.3 b/man3/iswlower.3 index bc39333ccc..755b6ed70a 100644 --- a/man3/iswlower.3 +++ b/man3/iswlower.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH ISWLOWER 3 (date) "Linux man-pages (unreleased)" +.TH iswlower 3 (date) "Linux man-pages (unreleased)" .SH NAME iswlower \- test for lowercase wide character .SH LIBRARY diff --git a/man3/iswprint.3 b/man3/iswprint.3 index cd4e37d75a..7049412538 100644 --- a/man3/iswprint.3 +++ b/man3/iswprint.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH ISWPRINT 3 (date) "Linux man-pages (unreleased)" +.TH iswprint 3 (date) "Linux man-pages (unreleased)" .SH NAME iswprint \- test for printing wide character .SH LIBRARY diff --git a/man3/iswpunct.3 b/man3/iswpunct.3 index ffbccb438b..9a756fbf91 100644 --- a/man3/iswpunct.3 +++ b/man3/iswpunct.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH ISWPUNCT 3 (date) "Linux man-pages (unreleased)" +.TH iswpunct 3 (date) "Linux man-pages (unreleased)" .SH NAME iswpunct \- test for punctuation or symbolic wide character .SH LIBRARY diff --git a/man3/iswspace.3 b/man3/iswspace.3 index eb57151dc1..c5ddf284ed 100644 --- a/man3/iswspace.3 +++ b/man3/iswspace.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH ISWSPACE 3 (date) "Linux man-pages (unreleased)" +.TH iswspace 3 (date) "Linux man-pages (unreleased)" .SH NAME iswspace \- test for whitespace wide character .SH LIBRARY diff --git a/man3/iswupper.3 b/man3/iswupper.3 index 4d15579918..0d0ba29c0f 100644 --- a/man3/iswupper.3 +++ b/man3/iswupper.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH ISWUPPER 3 (date) "Linux man-pages (unreleased)" +.TH iswupper 3 (date) "Linux man-pages (unreleased)" .SH NAME iswupper \- test for uppercase wide character .SH LIBRARY diff --git a/man3/iswxdigit.3 b/man3/iswxdigit.3 index 47bb96d7a9..bb012468db 100644 --- a/man3/iswxdigit.3 +++ b/man3/iswxdigit.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH ISWXDIGIT 3 (date) "Linux man-pages (unreleased)" +.TH iswxdigit 3 (date) "Linux man-pages (unreleased)" .SH NAME iswxdigit \- test for hexadecimal digit wide character .SH LIBRARY diff --git a/man3/j0.3 b/man3/j0.3 index 3e62a7c3bf..b7d02bcb88 100644 --- a/man3/j0.3 +++ b/man3/j0.3 @@ -13,7 +13,7 @@ .\" Modified 2004-11-12 as per suggestion by Fabian Kreutz/AEB .\" 2008-07-24, mtk, moved yxx() material into separate y0.3 page .\" -.TH J0 3 (date) "Linux man-pages (unreleased)" +.TH j0 3 (date) "Linux man-pages (unreleased)" .SH NAME j0, j0f, j0l, j1, j1f, j1l, jn, jnf, jnl \- Bessel functions of the first kind diff --git a/man3/key_setsecret.3 b/man3/key_setsecret.3 index df4be86b52..bf44751317 100644 --- a/man3/key_setsecret.3 +++ b/man3/key_setsecret.3 @@ -4,7 +4,7 @@ .\" .\" I had no way the check the functions out .\" be careful -.TH KEY_SETSECRET 3 (date) "Linux man-pages (unreleased)" +.TH key_setsecret 3 (date) "Linux man-pages (unreleased)" .SH NAME key_decryptsession, key_encryptsession, key_setsecret, key_gendes, key_secretkey_is_set \- interfaces to rpc keyserver daemon diff --git a/man3/killpg.3 b/man3/killpg.3 index 6a4bc48da5..b2a960a248 100644 --- a/man3/killpg.3 +++ b/man3/killpg.3 @@ -11,7 +11,7 @@ .\" Added notes on CAP_KILL .\" Modified 2004-06-21 by aeb .\" -.TH KILLPG 3 (date) "Linux man-pages (unreleased)" +.TH killpg 3 (date) "Linux man-pages (unreleased)" .SH NAME killpg \- send signal to a process group .SH LIBRARY diff --git a/man3/ldexp.3 b/man3/ldexp.3 index e65d56e6e9..f0e2bec75a 100644 --- a/man3/ldexp.3 +++ b/man3/ldexp.3 @@ -11,7 +11,7 @@ .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu) .\" Modified 2004-10-31 by aeb .\" -.TH LDEXP 3 (date) "Linux man-pages (unreleased)" +.TH ldexp 3 (date) "Linux man-pages (unreleased)" .SH NAME ldexp, ldexpf, ldexpl \- multiply floating-point number by integral power of 2 .SH LIBRARY diff --git a/man3/lgamma.3 b/man3/lgamma.3 index 99eb0eb403..86d06511ed 100644 --- a/man3/lgamma.3 +++ b/man3/lgamma.3 @@ -6,7 +6,7 @@ .\" .\" based on glibc infopages .\" -.TH LGAMMA 3 (date) "Linux man-pages (unreleased)" +.TH lgamma 3 (date) "Linux man-pages (unreleased)" .SH NAME lgamma, lgammaf, lgammal, lgamma_r, lgammaf_r, lgammal_r, signgam \- log gamma function diff --git a/man3/lio_listio.3 b/man3/lio_listio.3 index 8f44f31c22..31ece2d0c5 100644 --- a/man3/lio_listio.3 +++ b/man3/lio_listio.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH LIO_LISTIO 3 (date) "Linux man-pages (unreleased)" +.TH lio_listio 3 (date) "Linux man-pages (unreleased)" .SH NAME lio_listio \- initiate a list of I/O requests .SH LIBRARY diff --git a/man3/localeconv.3 b/man3/localeconv.3 index 6d3dd80083..473eb73a2b 100644 --- a/man3/localeconv.3 +++ b/man3/localeconv.3 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" Modified Sat Jul 24 19:01:20 1993 by Rik Faith (faith@cs.unc.edu) -.TH LOCALECONV 3 (date) "Linux man-pages (unreleased)" +.TH localeconv 3 (date) "Linux man-pages (unreleased)" .SH NAME localeconv \- get numeric formatting information .SH LIBRARY diff --git a/man3/lockf.3 b/man3/lockf.3 index 6c3c9abfa9..edea069a90 100644 --- a/man3/lockf.3 +++ b/man3/lockf.3 @@ -6,7 +6,7 @@ .\" Added section stuff, aeb, 2002-04-22. .\" Corrected include file, drepper, 2003-06-15. .\" -.TH LOCKF 3 (date) "Linux man-pages (unreleased)" +.TH lockf 3 (date) "Linux man-pages (unreleased)" .SH NAME lockf \- apply, test or remove a POSIX lock on an open file .SH LIBRARY diff --git a/man3/log.3 b/man3/log.3 index 90ab2b3da7..14f888ce06 100644 --- a/man3/log.3 +++ b/man3/log.3 @@ -13,7 +13,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH LOG 3 (date) "Linux man-pages (unreleased)" +.TH log 3 (date) "Linux man-pages (unreleased)" .SH NAME log, logf, logl \- natural logarithmic function .SH LIBRARY diff --git a/man3/log10.3 b/man3/log10.3 index 4040d95d52..87c69f646b 100644 --- a/man3/log10.3 +++ b/man3/log10.3 @@ -13,7 +13,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH LOG10 3 (date) "Linux man-pages (unreleased)" +.TH log10 3 (date) "Linux man-pages (unreleased)" .SH NAME log10, log10f, log10l \- base-10 logarithmic function .SH LIBRARY diff --git a/man3/log2.3 b/man3/log2.3 index 8c49e90f2c..c0fa1a6b2e 100644 --- a/man3/log2.3 +++ b/man3/log2.3 @@ -13,7 +13,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH LOG2 3 (date) "Linux man-pages (unreleased)" +.TH log2 3 (date) "Linux man-pages (unreleased)" .SH NAME log2, log2f, log2l \- base-2 logarithmic function .SH LIBRARY diff --git a/man3/logb.3 b/man3/logb.3 index d467c5a2e9..fc6a4a78a6 100644 --- a/man3/logb.3 +++ b/man3/logb.3 @@ -6,7 +6,7 @@ .\" .\" Inspired by a page by Walter Harms created 2002-08-10 .\" -.TH LOGB 3 (date) "Linux man-pages (unreleased)" +.TH logb 3 (date) "Linux man-pages (unreleased)" .SH NAME logb, logbf, logbl \- get exponent of a floating-point value .SH LIBRARY diff --git a/man3/login.3 b/man3/login.3 index 2c11df222c..07a48f7208 100644 --- a/man3/login.3 +++ b/man3/login.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH LOGIN 3 (date) "Linux man-pages (unreleased)" +.TH login 3 (date) "Linux man-pages (unreleased)" .SH NAME login, logout \- write utmp and wtmp entries .SH LIBRARY diff --git a/man3/lrint.3 b/man3/lrint.3 index 14778d6f5e..abcb6b5c43 100644 --- a/man3/lrint.3 +++ b/man3/lrint.3 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH LRINT 3 (date) "Linux man-pages (unreleased)" +.TH lrint 3 (date) "Linux man-pages (unreleased)" .SH NAME lrint, lrintf, lrintl, llrint, llrintf, llrintl \- round to nearest integer .SH LIBRARY diff --git a/man3/lround.3 b/man3/lround.3 index f788617b03..c68bc4439e 100644 --- a/man3/lround.3 +++ b/man3/lround.3 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH LROUND 3 (date) "Linux man-pages (unreleased)" +.TH lround 3 (date) "Linux man-pages (unreleased)" .SH NAME lround, lroundf, lroundl, llround, llroundf, llroundl \- round to nearest integer diff --git a/man3/lsearch.3 b/man3/lsearch.3 index 275d5222fa..24439f1505 100644 --- a/man3/lsearch.3 +++ b/man3/lsearch.3 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" Corrected prototype and include, aeb, 990927 -.TH LSEARCH 3 (date) "Linux man-pages (unreleased)" +.TH lsearch 3 (date) "Linux man-pages (unreleased)" .SH NAME lfind, lsearch \- linear search of an array .SH LIBRARY diff --git a/man3/lseek64.3 b/man3/lseek64.3 index 4c48623a25..b03070ef17 100644 --- a/man3/lseek64.3 +++ b/man3/lseek64.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH LSEEK64 3 (date) "Linux man-pages (unreleased)" +.TH lseek64 3 (date) "Linux man-pages (unreleased)" .SH NAME lseek64 \- reposition 64-bit read/write file offset .SH LIBRARY diff --git a/man3/makecontext.3 b/man3/makecontext.3 index 739e3afea9..08fb456ff4 100644 --- a/man3/makecontext.3 +++ b/man3/makecontext.3 @@ -5,7 +5,7 @@ .\" .\" 2006-08-02, mtk, Added example program .\" -.TH MAKECONTEXT 3 (date) "Linux man-pages (unreleased)" +.TH makecontext 3 (date) "Linux man-pages (unreleased)" .SH NAME makecontext, swapcontext \- manipulate user context .SH LIBRARY diff --git a/man3/makedev.3 b/man3/makedev.3 index 955e0d817b..93e24a9175 100644 --- a/man3/makedev.3 +++ b/man3/makedev.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MAKEDEV 3 (date) "Linux man-pages (unreleased)" +.TH makedev 3 (date) "Linux man-pages (unreleased)" .SH NAME makedev, major, minor \- manage a device number .SH LIBRARY diff --git a/man3/mallinfo.3 b/man3/mallinfo.3 index 14c7d34d6a..f24fd6686b 100644 --- a/man3/mallinfo.3 +++ b/man3/mallinfo.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MALLINFO 3 (date) "Linux man-pages (unreleased)" +.TH mallinfo 3 (date) "Linux man-pages (unreleased)" .SH NAME mallinfo, mallinfo2 \- obtain memory allocation information .SH LIBRARY diff --git a/man3/malloc.3 b/man3/malloc.3 index 9f8bcb2be5..6d698a8492 100644 --- a/man3/malloc.3 +++ b/man3/malloc.3 @@ -11,7 +11,7 @@ .\" FIXME . Review http://austingroupbugs.net/view.php?id=374 .\" to see what changes are required on this page. .\" -.TH MALLOC 3 (date) "Linux man-pages (unreleased)" +.TH malloc 3 (date) "Linux man-pages (unreleased)" .SH NAME malloc, free, calloc, realloc, reallocarray \- allocate and free dynamic memory .SH LIBRARY diff --git a/man3/malloc_get_state.3 b/man3/malloc_get_state.3 index 19f1ed60fa..8cb8184c12 100644 --- a/man3/malloc_get_state.3 +++ b/man3/malloc_get_state.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MALLOC_GET_STATE 3 (date) "Linux man-pages (unreleased)" +.TH malloc_get_state 3 (date) "Linux man-pages (unreleased)" .SH NAME malloc_get_state, malloc_set_state \- record and restore state of malloc implementation diff --git a/man3/malloc_info.3 b/man3/malloc_info.3 index 3f668db9d5..bf063da93f 100644 --- a/man3/malloc_info.3 +++ b/man3/malloc_info.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MALLOC_INFO 3 (date) "Linux man-pages (unreleased)" +.TH malloc_info 3 (date) "Linux man-pages (unreleased)" .SH NAME malloc_info \- export malloc state to a stream .SH LIBRARY diff --git a/man3/malloc_stats.3 b/man3/malloc_stats.3 index 61dbebb4af..205c8b6efc 100644 --- a/man3/malloc_stats.3 +++ b/man3/malloc_stats.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MALLOC_STATS 3 (date) "Linux man-pages (unreleased)" +.TH malloc_stats 3 (date) "Linux man-pages (unreleased)" .SH NAME malloc_stats \- print memory allocation statistics .SH LIBRARY diff --git a/man3/malloc_trim.3 b/man3/malloc_trim.3 index 6672d58d58..ed07b7a4a5 100644 --- a/man3/malloc_trim.3 +++ b/man3/malloc_trim.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MALLOC_TRIM 3 (date) "Linux man-pages (unreleased)" +.TH malloc_trim 3 (date) "Linux man-pages (unreleased)" .SH NAME malloc_trim \- release free memory from the heap .SH LIBRARY diff --git a/man3/malloc_usable_size.3 b/man3/malloc_usable_size.3 index 62ef99eeeb..dc9edadce5 100644 --- a/man3/malloc_usable_size.3 +++ b/man3/malloc_usable_size.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MALLOC_USABLE_SIZE 3 (date) "Linux man-pages (unreleased)" +.TH malloc_usable_size 3 (date) "Linux man-pages (unreleased)" .SH NAME malloc_usable_size \- obtain size of block of memory allocated from heap .SH LIBRARY diff --git a/man3/matherr.3 b/man3/matherr.3 index d74d3b711b..14215ed188 100644 --- a/man3/matherr.3 +++ b/man3/matherr.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MATHERR 3 (date) "Linux man-pages (unreleased)" +.TH matherr 3 (date) "Linux man-pages (unreleased)" .SH NAME matherr \- SVID math library exception handling .SH LIBRARY diff --git a/man3/mblen.3 b/man3/mblen.3 index 71e1a4c590..f0c2fd7363 100644 --- a/man3/mblen.3 +++ b/man3/mblen.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH MBLEN 3 (date) "Linux man-pages (unreleased)" +.TH mblen 3 (date) "Linux man-pages (unreleased)" .SH NAME mblen \- determine number of bytes in next multibyte character .SH LIBRARY diff --git a/man3/mbrlen.3 b/man3/mbrlen.3 index c36ea5e5a8..d7aac5e677 100644 --- a/man3/mbrlen.3 +++ b/man3/mbrlen.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH MBRLEN 3 (date) "Linux man-pages (unreleased)" +.TH mbrlen 3 (date) "Linux man-pages (unreleased)" .SH NAME mbrlen \- determine number of bytes in next multibyte character .SH LIBRARY diff --git a/man3/mbrtowc.3 b/man3/mbrtowc.3 index 06a448c301..804f87032a 100644 --- a/man3/mbrtowc.3 +++ b/man3/mbrtowc.3 @@ -9,7 +9,7 @@ .\" http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH MBRTOWC 3 (date) "Linux man-pages (unreleased)" +.TH mbrtowc 3 (date) "Linux man-pages (unreleased)" .SH NAME mbrtowc \- convert a multibyte sequence to a wide character .SH LIBRARY diff --git a/man3/mbsinit.3 b/man3/mbsinit.3 index 6263fe7248..9a170d854f 100644 --- a/man3/mbsinit.3 +++ b/man3/mbsinit.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH MBSINIT 3 (date) "Linux man-pages (unreleased)" +.TH mbsinit 3 (date) "Linux man-pages (unreleased)" .SH NAME mbsinit \- test for initial shift state .SH LIBRARY diff --git a/man3/mbsnrtowcs.3 b/man3/mbsnrtowcs.3 index caf129258a..c53e4ecb14 100644 --- a/man3/mbsnrtowcs.3 +++ b/man3/mbsnrtowcs.3 @@ -7,7 +7,7 @@ .\" Dinkumware C library reference http://www.dinkumware.com/ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" -.TH MBSNRTOWCS 3 (date) "Linux man-pages (unreleased)" +.TH mbsnrtowcs 3 (date) "Linux man-pages (unreleased)" .SH NAME mbsnrtowcs \- convert a multibyte string to a wide-character string .SH LIBRARY diff --git a/man3/mbsrtowcs.3 b/man3/mbsrtowcs.3 index e0e9b75d3c..57f7bbf61d 100644 --- a/man3/mbsrtowcs.3 +++ b/man3/mbsrtowcs.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH MBSRTOWCS 3 (date) "Linux man-pages (unreleased)" +.TH mbsrtowcs 3 (date) "Linux man-pages (unreleased)" .SH NAME mbsrtowcs \- convert a multibyte string to a wide-character string .SH LIBRARY diff --git a/man3/mbstowcs.3 b/man3/mbstowcs.3 index a8f57a0457..c7d348f155 100644 --- a/man3/mbstowcs.3 +++ b/man3/mbstowcs.3 @@ -9,7 +9,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH MBSTOWCS 3 (date) "Linux man-pages (unreleased)" +.TH mbstowcs 3 (date) "Linux man-pages (unreleased)" .SH NAME mbstowcs \- convert a multibyte string to a wide-character string .SH LIBRARY diff --git a/man3/mbtowc.3 b/man3/mbtowc.3 index a929fe0d22..858b2f3e35 100644 --- a/man3/mbtowc.3 +++ b/man3/mbtowc.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH MBTOWC 3 (date) "Linux man-pages (unreleased)" +.TH mbtowc 3 (date) "Linux man-pages (unreleased)" .SH NAME mbtowc \- convert a multibyte sequence to a wide character .SH LIBRARY diff --git a/man3/mcheck.3 b/man3/mcheck.3 index 62c07de8fe..918ceb5084 100644 --- a/man3/mcheck.3 +++ b/man3/mcheck.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MCHECK 3 (date) "Linux man-pages (unreleased)" +.TH mcheck 3 (date) "Linux man-pages (unreleased)" .SH NAME mcheck, mcheck_check_all, mcheck_pedantic, mprobe \- heap consistency checking .SH LIBRARY diff --git a/man3/memccpy.3 b/man3/memccpy.3 index 4f682e32e6..4f61ab4e48 100644 --- a/man3/memccpy.3 +++ b/man3/memccpy.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 18:57:24 1993 by Rik Faith (faith@cs.unc.edu) -.TH MEMCCPY 3 (date) "Linux man-pages (unreleased)" +.TH memccpy 3 (date) "Linux man-pages (unreleased)" .SH NAME memccpy \- copy memory area .SH LIBRARY diff --git a/man3/memchr.3 b/man3/memchr.3 index a7ee1a8f28..2623632abb 100644 --- a/man3/memchr.3 +++ b/man3/memchr.3 @@ -9,7 +9,7 @@ .\" Modified Wed Feb 20 21:09:36 2002, Ian Redfern (redferni@logica.com) .\" 2008-07-09, mtk, add rawmemchr() .\" -.TH MEMCHR 3 (date) "Linux man-pages (unreleased)" +.TH memchr 3 (date) "Linux man-pages (unreleased)" .SH NAME memchr, memrchr, rawmemchr \- scan memory for a character .SH LIBRARY diff --git a/man3/memcmp.3 b/man3/memcmp.3 index 275d139072..df2d1dd164 100644 --- a/man3/memcmp.3 +++ b/man3/memcmp.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 18:55:27 1993 by Rik Faith (faith@cs.unc.edu) -.TH MEMCMP 3 (date) "Linux man-pages (unreleased)" +.TH memcmp 3 (date) "Linux man-pages (unreleased)" .SH NAME memcmp \- compare memory areas .SH LIBRARY diff --git a/man3/memcpy.3 b/man3/memcpy.3 index eb1744ad29..484ad0dbb3 100644 --- a/man3/memcpy.3 +++ b/man3/memcpy.3 @@ -8,7 +8,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sun Jul 25 10:41:09 1993 by Rik Faith (faith@cs.unc.edu) -.TH MEMCPY 3 (date) "Linux man-pages (unreleased)" +.TH memcpy 3 (date) "Linux man-pages (unreleased)" .SH NAME memcpy \- copy memory area .SH LIBRARY diff --git a/man3/memfrob.3 b/man3/memfrob.3 index f13ca33ee2..d47be00a47 100644 --- a/man3/memfrob.3 +++ b/man3/memfrob.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 18:54:45 1993 by Rik Faith (faith@cs.unc.edu) -.TH MEMFROB 3 (date) "Linux man-pages (unreleased)" +.TH memfrob 3 (date) "Linux man-pages (unreleased)" .SH NAME memfrob \- frobnicate (obfuscate) a memory area .SH LIBRARY diff --git a/man3/memmem.3 b/man3/memmem.3 index 33a1780563..134dffab09 100644 --- a/man3/memmem.3 +++ b/man3/memmem.3 @@ -7,7 +7,7 @@ .\" 386BSD man pages .\" Modified Sat Jul 24 18:50:48 1993 by Rik Faith (faith@cs.unc.edu) .\" Interchanged 'needle' and 'haystack'; added history, aeb, 980113. -.TH MEMMEM 3 (date) "Linux man-pages (unreleased)" +.TH memmem 3 (date) "Linux man-pages (unreleased)" .SH NAME memmem \- locate a substring .SH LIBRARY diff --git a/man3/memmove.3 b/man3/memmove.3 index 368e80c5bc..3fe3662af5 100644 --- a/man3/memmove.3 +++ b/man3/memmove.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 18:49:59 1993 by Rik Faith (faith@cs.unc.edu) -.TH MEMMOVE 3 (date) "Linux man-pages (unreleased)" +.TH memmove 3 (date) "Linux man-pages (unreleased)" .SH NAME memmove \- copy memory area .SH LIBRARY diff --git a/man3/mempcpy.3 b/man3/mempcpy.3 index 6558594421..84eb39d707 100644 --- a/man3/mempcpy.3 +++ b/man3/mempcpy.3 @@ -5,7 +5,7 @@ .\" Heavily based on glibc infopages, copyright Free Software Foundation .\" .\" aeb, 2003, polished a little -.TH MEMPCPY 3 (date) "Linux man-pages (unreleased)" +.TH mempcpy 3 (date) "Linux man-pages (unreleased)" .SH NAME mempcpy, wmempcpy \- copy memory area .SH LIBRARY diff --git a/man3/memset.3 b/man3/memset.3 index df65c925f1..bc5d579084 100644 --- a/man3/memset.3 +++ b/man3/memset.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 18:49:23 1993 by Rik Faith (faith@cs.unc.edu) -.TH MEMSET 3 (date) "Linux man-pages (unreleased)" +.TH memset 3 (date) "Linux man-pages (unreleased)" .SH NAME memset \- fill memory with a constant byte .SH LIBRARY diff --git a/man3/mkdtemp.3 b/man3/mkdtemp.3 index 739837dab3..fa65e63da7 100644 --- a/man3/mkdtemp.3 +++ b/man3/mkdtemp.3 @@ -3,7 +3,7 @@ .\" and GNU libc documentation .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft -.TH MKDTEMP 3 (date) "Linux man-pages (unreleased)" +.TH mkdtemp 3 (date) "Linux man-pages (unreleased)" .SH NAME mkdtemp \- create a unique temporary directory .SH LIBRARY diff --git a/man3/mkfifo.3 b/man3/mkfifo.3 index 560329c631..aeac3b3ff2 100644 --- a/man3/mkfifo.3 +++ b/man3/mkfifo.3 @@ -5,7 +5,7 @@ .\" .\" changed section from 2 to 3, aeb, 950919 .\" -.TH MKFIFO 3 (date) "Linux man-pages (unreleased)" +.TH mkfifo 3 (date) "Linux man-pages (unreleased)" .SH NAME mkfifo, mkfifoat \- make a FIFO special file (a named pipe) .SH LIBRARY diff --git a/man3/mkstemp.3 b/man3/mkstemp.3 index c06b1ba04f..74dab4a922 100644 --- a/man3/mkstemp.3 +++ b/man3/mkstemp.3 @@ -12,7 +12,7 @@ .\" Modified 990328, aeb .\" 2008-06-19, mtk, Added mkostemp(); various other changes .\" -.TH MKSTEMP 3 (date) "Linux man-pages (unreleased)" +.TH mkstemp 3 (date) "Linux man-pages (unreleased)" .SH NAME mkstemp, mkostemp, mkstemps, mkostemps \- create a unique temporary file .SH LIBRARY diff --git a/man3/mktemp.3 b/man3/mktemp.3 index 800f3a1b6b..586ac0f83d 100644 --- a/man3/mktemp.3 +++ b/man3/mktemp.3 @@ -11,7 +11,7 @@ .\" (prompted by Scott Burkett ) .\" Modified Sun Mar 28 23:44:38 1999 by Andries Brouwer (aeb@cwi.nl) .\" -.TH MKTEMP 3 (date) "Linux man-pages (unreleased)" +.TH mktemp 3 (date) "Linux man-pages (unreleased)" .SH NAME mktemp \- make a unique temporary filename .SH LIBRARY diff --git a/man3/modf.3 b/man3/modf.3 index 148598ad84..fdbca78733 100644 --- a/man3/modf.3 +++ b/man3/modf.3 @@ -10,7 +10,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH MODF 3 (date) "Linux man-pages (unreleased)" +.TH modf 3 (date) "Linux man-pages (unreleased)" .SH NAME modf, modff, modfl \- extract signed integral and fractional values from floating-point number diff --git a/man3/mpool.3 b/man3/mpool.3 index 256c3d467f..ea0c82a2a7 100644 --- a/man3/mpool.3 +++ b/man3/mpool.3 @@ -5,7 +5,7 @@ .\" .\" @(#)mpool.3 8.1 (Berkeley) 6/4/93 .\" -.TH MPOOL 3 (date) "Linux man-pages (unreleased)" +.TH mpool 3 (date) "Linux man-pages (unreleased)" .UC 7 .SH NAME mpool \- shared memory buffer pool diff --git a/man3/mq_close.3 b/man3/mq_close.3 index 7a256d9faa..cb99375be5 100644 --- a/man3/mq_close.3 +++ b/man3/mq_close.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MQ_CLOSE 3 (date) "Linux man-pages (unreleased)" +.TH mq_close 3 (date) "Linux man-pages (unreleased)" .SH NAME mq_close \- close a message queue descriptor .SH LIBRARY diff --git a/man3/mq_getattr.3 b/man3/mq_getattr.3 index f154c58e1d..98ec308fb9 100644 --- a/man3/mq_getattr.3 +++ b/man3/mq_getattr.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MQ_GETATTR 3 (date) "Linux man-pages (unreleased)" +.TH mq_getattr 3 (date) "Linux man-pages (unreleased)" .SH NAME mq_getattr, mq_setattr \- get/set message queue attributes .SH LIBRARY diff --git a/man3/mq_notify.3 b/man3/mq_notify.3 index 9224b1142f..72edbdd6e4 100644 --- a/man3/mq_notify.3 +++ b/man3/mq_notify.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MQ_NOTIFY 3 (date) "Linux man-pages (unreleased)" +.TH mq_notify 3 (date) "Linux man-pages (unreleased)" .SH NAME mq_notify \- register for notification when a message is available .SH LIBRARY diff --git a/man3/mq_open.3 b/man3/mq_open.3 index 7b5539a351..46838488e8 100644 --- a/man3/mq_open.3 +++ b/man3/mq_open.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MQ_OPEN 3 (date) "Linux man-pages (unreleased)" +.TH mq_open 3 (date) "Linux man-pages (unreleased)" .SH NAME mq_open \- open a message queue .SH LIBRARY diff --git a/man3/mq_receive.3 b/man3/mq_receive.3 index 48dd8eaded..739b1f73cc 100644 --- a/man3/mq_receive.3 +++ b/man3/mq_receive.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MQ_RECEIVE 3 (date) "Linux man-pages (unreleased)" +.TH mq_receive 3 (date) "Linux man-pages (unreleased)" .SH NAME mq_receive, mq_timedreceive \- receive a message from a message queue .SH LIBRARY diff --git a/man3/mq_send.3 b/man3/mq_send.3 index 1458b4582e..c20b9251e7 100644 --- a/man3/mq_send.3 +++ b/man3/mq_send.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MQ_SEND 3 (date) "Linux man-pages (unreleased)" +.TH mq_send 3 (date) "Linux man-pages (unreleased)" .SH NAME mq_send, mq_timedsend \- send a message to a message queue .SH LIBRARY diff --git a/man3/mq_unlink.3 b/man3/mq_unlink.3 index 04ccfa423a..a7f50555dd 100644 --- a/man3/mq_unlink.3 +++ b/man3/mq_unlink.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MQ_UNLINK 3 (date) "Linux man-pages (unreleased)" +.TH mq_unlink 3 (date) "Linux man-pages (unreleased)" .SH NAME mq_unlink \- remove a message queue .SH LIBRARY diff --git a/man3/mtrace.3 b/man3/mtrace.3 index 074af905f1..4c7a6f8e5f 100644 --- a/man3/mtrace.3 +++ b/man3/mtrace.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MTRACE 3 (date) "Linux man-pages (unreleased)" +.TH mtrace 3 (date) "Linux man-pages (unreleased)" .SH NAME mtrace, muntrace \- malloc tracing .SH LIBRARY diff --git a/man3/nan.3 b/man3/nan.3 index 677b6a64e4..128151a849 100644 --- a/man3/nan.3 +++ b/man3/nan.3 @@ -6,7 +6,7 @@ .\" .\" Corrections by aeb .\" -.TH NAN 3 (date) "Linux man-pages (unreleased)" +.TH nan 3 (date) "Linux man-pages (unreleased)" .SH NAME nan, nanf, nanl \- return 'Not a Number' .SH LIBRARY diff --git a/man3/netlink.3 b/man3/netlink.3 index 28c7cbfc4e..119db8d689 100644 --- a/man3/netlink.3 +++ b/man3/netlink.3 @@ -5,7 +5,7 @@ .\" Based on the original comments from Alexey Kuznetsov .\" $Id: netlink.3,v 1.1 1999/05/14 17:17:24 freitag Exp $ .\" -.TH NETLINK 3 (date) "Linux man-pages (unreleased)" +.TH netlink 3 (date) "Linux man-pages (unreleased)" .SH NAME netlink \- Netlink macros .SH LIBRARY diff --git a/man3/newlocale.3 b/man3/newlocale.3 index cc4dd7d9c0..c5dec82045 100644 --- a/man3/newlocale.3 +++ b/man3/newlocale.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH NEWLOCALE 3 (date) "Linux man-pages (unreleased)" +.TH newlocale 3 (date) "Linux man-pages (unreleased)" .SH NAME newlocale, freelocale \- create, modify, and free a locale object .SH LIBRARY diff --git a/man3/nextup.3 b/man3/nextup.3 index a952a6dad7..19e99ecc69 100644 --- a/man3/nextup.3 +++ b/man3/nextup.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH NEXTUP 3 (date) "Linux man-pages (unreleased)" +.TH nextup 3 (date) "Linux man-pages (unreleased)" .SH NAME nextup, nextupf, nextupl, nextdown, nextdownf, nextdownl \- return next floating-point number toward positive/negative infinity diff --git a/man3/nl_langinfo.3 b/man3/nl_langinfo.3 index ff9c8162c8..ac2199cfbe 100644 --- a/man3/nl_langinfo.3 +++ b/man3/nl_langinfo.3 @@ -10,7 +10,7 @@ .\" .\" Corrected prototype, 2002-10-18, aeb .\" -.TH NL_LANGINFO 3 (date) "Linux man-pages (unreleased)" +.TH nl_langinfo 3 (date) "Linux man-pages (unreleased)" .SH NAME nl_langinfo, nl_langinfo_l \- query language and locale information .SH LIBRARY diff --git a/man3/ntp_gettime.3 b/man3/ntp_gettime.3 index a44388506c..12ed0444c7 100644 --- a/man3/ntp_gettime.3 +++ b/man3/ntp_gettime.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH NTP_GETTIME 3 (date) "Linux man-pages (unreleased)" +.TH ntp_gettime 3 (date) "Linux man-pages (unreleased)" .SH NAME ntp_gettime, ntp_gettimex \- get time parameters (NTP daemon interface) .SH LIBRARY diff --git a/man3/offsetof.3 b/man3/offsetof.3 index 423db57687..7cfba984d5 100644 --- a/man3/offsetof.3 +++ b/man3/offsetof.3 @@ -25,7 +25,7 @@ .\" References: .\" /usr/lib/gcc/i486-linux-gnu/4.1.1/include/stddef.h .\" glibc-doc -.TH OFFSETOF 3 (date) "Linux man-pages (unreleased)" +.TH offsetof 3 (date) "Linux man-pages (unreleased)" .SH NAME offsetof \- offset of a structure member .SH LIBRARY diff --git a/man3/on_exit.3 b/man3/on_exit.3 index 5ef02a961d..0b4deb6acf 100644 --- a/man3/on_exit.3 +++ b/man3/on_exit.3 @@ -8,7 +8,7 @@ .\" 386BSD man pages .\" Modified 1993-04-02, David Metcalfe .\" Modified 1993-07-25, Rik Faith (faith@cs.unc.edu) -.TH ON_EXIT 3 (date) "Linux man-pages (unreleased)" +.TH on_exit 3 (date) "Linux man-pages (unreleased)" .SH NAME on_exit \- register a function to be called at normal process termination .SH LIBRARY diff --git a/man3/open_memstream.3 b/man3/open_memstream.3 index dcc7d63c48..649b808f00 100644 --- a/man3/open_memstream.3 +++ b/man3/open_memstream.3 @@ -4,7 +4,7 @@ .\" .\" 2008-12-04, Petr Baudis : Document open_wmemstream() .\" -.TH OPEN_MEMSTREAM 3 (date) "Linux man-pages (unreleased)" +.TH open_memstream 3 (date) "Linux man-pages (unreleased)" .SH NAME open_memstream, open_wmemstream \- open a dynamic memory buffer stream .SH LIBRARY diff --git a/man3/opendir.3 b/man3/opendir.3 index aba93c76cb..4657bc8bce 100644 --- a/man3/opendir.3 +++ b/man3/opendir.3 @@ -9,7 +9,7 @@ .\" Modified Sat Jul 24 18:46:01 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified 11 June 1995 by Andries Brouwer (aeb@cwi.nl) .\" 2007-07-30 Ulrich Drepper : document fdopendir(). -.TH OPENDIR 3 (date) "Linux man-pages (unreleased)" +.TH opendir 3 (date) "Linux man-pages (unreleased)" .SH NAME opendir, fdopendir \- open a directory .SH LIBRARY diff --git a/man3/openpty.3 b/man3/openpty.3 index 2892959d2f..191594f9d6 100644 --- a/man3/openpty.3 +++ b/man3/openpty.3 @@ -7,7 +7,7 @@ .\" .\" Added -lutil remark, 030718 .\" -.TH OPENPTY 3 (date) "Linux man-pages (unreleased)" +.TH openpty 3 (date) "Linux man-pages (unreleased)" .SH NAME openpty, login_tty, forkpty \- terminal utility functions .SH LIBRARY diff --git a/man3/perror.3 b/man3/perror.3 index 7b72161a87..a561cbd56c 100644 --- a/man3/perror.3 +++ b/man3/perror.3 @@ -9,7 +9,7 @@ .\" (msmith@falcon.mercer.peachnet.edu) and various other changes. .\" Modified 1996-05-16 by Martin Schulze (joey@infodrom.north.de) .\" -.TH PERROR 3 (date) "Linux man-pages (unreleased)" +.TH perror 3 (date) "Linux man-pages (unreleased)" .SH NAME perror \- print a system error message .SH LIBRARY diff --git a/man3/popen.3 b/man3/popen.3 index c7f828fce5..bfa88f5226 100644 --- a/man3/popen.3 +++ b/man3/popen.3 @@ -9,7 +9,7 @@ .\" Modified Sat May 18 20:37:44 1996 by Martin Schulze (joey@linux.de) .\" Modified 7 May 1998 by Joseph S. Myers (jsm28@cam.ac.uk) .\" -.TH POPEN 3 (date) "Linux man-pages (unreleased)" +.TH popen 3 (date) "Linux man-pages (unreleased)" .SH NAME popen, pclose \- pipe stream to or from a process .SH LIBRARY diff --git a/man3/posix_fallocate.3 b/man3/posix_fallocate.3 index 74fe758b24..528e6701f0 100644 --- a/man3/posix_fallocate.3 +++ b/man3/posix_fallocate.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH POSIX_FALLOCATE 3 (date) "Linux man-pages (unreleased)" +.TH posix_fallocate 3 (date) "Linux man-pages (unreleased)" .SH NAME posix_fallocate \- allocate file space .SH LIBRARY diff --git a/man3/posix_madvise.3 b/man3/posix_madvise.3 index cf266f6932..5e2575ec5d 100644 --- a/man3/posix_madvise.3 +++ b/man3/posix_madvise.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH POSIX_MADVISE 3 (date) "Linux man-pages (unreleased)" +.TH posix_madvise 3 (date) "Linux man-pages (unreleased)" .SH NAME posix_madvise \- give advice about patterns of memory usage .SH LIBRARY diff --git a/man3/posix_memalign.3 b/man3/posix_memalign.3 index 843846c0ae..de9d29a666 100644 --- a/man3/posix_memalign.3 +++ b/man3/posix_memalign.3 @@ -6,7 +6,7 @@ .\" 2001-10-11, 2003-08-22, aeb, added some details .\" 2012-03-23, Michael Kerrisk .\" Document pvalloc() and aligned_alloc() -.TH POSIX_MEMALIGN 3 (date) "Linux man-pages (unreleased)" +.TH posix_memalign 3 (date) "Linux man-pages (unreleased)" .SH NAME posix_memalign, aligned_alloc, memalign, valloc, pvalloc \- allocate aligned memory diff --git a/man3/posix_openpt.3 b/man3/posix_openpt.3 index 2003314e1f..cb30c57249 100644 --- a/man3/posix_openpt.3 +++ b/man3/posix_openpt.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH POSIX_OPENPT 3 (date) "Linux man-pages (unreleased)" +.TH posix_openpt 3 (date) "Linux man-pages (unreleased)" .SH NAME posix_openpt \- open a pseudoterminal device .SH LIBRARY diff --git a/man3/posix_spawn.3 b/man3/posix_spawn.3 index 0a20edbc2a..dcfbb7d984 100644 --- a/man3/posix_spawn.3 +++ b/man3/posix_spawn.3 @@ -8,7 +8,7 @@ .\" POSIX 1003.1-2004 documentation .\" (http://www.opengroup.org/onlinepubs/009695399) .\" -.TH POSIX_SPAWN 3 (date) "Linux man-pages (unreleased)" +.TH posix_spawn 3 (date) "Linux man-pages (unreleased)" .SH NAME posix_spawn, posix_spawnp \- spawn a process .SH LIBRARY diff --git a/man3/pow.3 b/man3/pow.3 index ecc9116251..f762a93aa0 100644 --- a/man3/pow.3 +++ b/man3/pow.3 @@ -12,7 +12,7 @@ .\" Modified 1995-08-14 by Arnt Gulbrandsen .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) -.TH POW 3 (date) "Linux man-pages (unreleased)" +.TH pow 3 (date) "Linux man-pages (unreleased)" .SH NAME pow, powf, powl \- power functions .SH LIBRARY diff --git a/man3/pow10.3 b/man3/pow10.3 index 95e864147c..41e35284dd 100644 --- a/man3/pow10.3 +++ b/man3/pow10.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH POW10 3 (date) "Linux man-pages (unreleased)" +.TH pow10 3 (date) "Linux man-pages (unreleased)" .SH NAME pow10, pow10f, pow10l \- base-10 power functions .SH LIBRARY diff --git a/man3/printf.3 b/man3/printf.3 index 8f944190b3..0f5d117579 100644 --- a/man3/printf.3 +++ b/man3/printf.3 @@ -12,7 +12,7 @@ .\" 2000-07-26 jsm28@hermes.cam.ac.uk - three small fixes .\" 2000-10-16 jsm28@hermes.cam.ac.uk - more fixes .\" -.TH PRINTF 3 (date) "Linux man-pages (unreleased)" +.TH printf 3 (date) "Linux man-pages (unreleased)" .SH NAME printf, fprintf, dprintf, sprintf, snprintf, vprintf, vfprintf, vdprintf, vsprintf, vsnprintf \- formatted output conversion diff --git a/man3/profil.3 b/man3/profil.3 index af462f0a5e..3c93b97954 100644 --- a/man3/profil.3 +++ b/man3/profil.3 @@ -5,7 +5,7 @@ .\" Modified Fri Jun 23 01:35:19 1995 Andries Brouwer .\" (prompted by Bas V. de Bakker ) .\" Corrected (and moved to man3), 980612, aeb -.TH PROFIL 3 (date) "Linux man-pages (unreleased)" +.TH profil 3 (date) "Linux man-pages (unreleased)" .SH NAME profil \- execution time profile .SH LIBRARY diff --git a/man3/psignal.3 b/man3/psignal.3 index 47a4e72ea5..0d1d7078ad 100644 --- a/man3/psignal.3 +++ b/man3/psignal.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 18:45:17 1993 by Rik Faith (faith@cs.unc.edu) -.TH PSIGNAL 3 (date) "Linux man-pages (unreleased)" +.TH psignal 3 (date) "Linux man-pages (unreleased)" .SH NAME psignal, psiginfo \- print signal description .SH LIBRARY diff --git a/man3/pthread_atfork.3 b/man3/pthread_atfork.3 index 0109a7ff34..71e2ea48e4 100644 --- a/man3/pthread_atfork.3 +++ b/man3/pthread_atfork.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_ATFORK 3 (date) "Linux man-pages (unreleased)" +.TH pthread_atfork 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_atfork \- register fork handlers .SH LIBRARY diff --git a/man3/pthread_attr_init.3 b/man3/pthread_attr_init.3 index 0729963f5c..be65a064e3 100644 --- a/man3/pthread_attr_init.3 +++ b/man3/pthread_attr_init.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_ATTR_INIT 3 (date) "Linux man-pages (unreleased)" +.TH pthread_attr_init 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_attr_init, pthread_attr_destroy \- initialize and destroy thread attributes object diff --git a/man3/pthread_attr_setaffinity_np.3 b/man3/pthread_attr_setaffinity_np.3 index 88613d09d4..d8cfffba34 100644 --- a/man3/pthread_attr_setaffinity_np.3 +++ b/man3/pthread_attr_setaffinity_np.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_ATTR_SETAFFINITY_NP 3 (date) "Linux man-pages (unreleased)" +.TH pthread_attr_setaffinity_np 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_attr_setaffinity_np, pthread_attr_getaffinity_np \- set/get CPU affinity attribute in thread attributes object diff --git a/man3/pthread_attr_setdetachstate.3 b/man3/pthread_attr_setdetachstate.3 index d14bd9f4b6..688426d59b 100644 --- a/man3/pthread_attr_setdetachstate.3 +++ b/man3/pthread_attr_setdetachstate.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_ATTR_SETDETACHSTATE 3 (date) "Linux man-pages (unreleased)" +.TH pthread_attr_setdetachstate 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_attr_setdetachstate, pthread_attr_getdetachstate \- set/get detach state attribute in thread attributes object diff --git a/man3/pthread_attr_setguardsize.3 b/man3/pthread_attr_setguardsize.3 index 1de0d076c2..e37bb60b3a 100644 --- a/man3/pthread_attr_setguardsize.3 +++ b/man3/pthread_attr_setguardsize.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_ATTR_SETGUARDSIZE 3 (date) "Linux man-pages (unreleased)" +.TH pthread_attr_setguardsize 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_attr_setguardsize, pthread_attr_getguardsize \- set/get guard size attribute in thread attributes object diff --git a/man3/pthread_attr_setinheritsched.3 b/man3/pthread_attr_setinheritsched.3 index 995eb484e7..6f73ecb8eb 100644 --- a/man3/pthread_attr_setinheritsched.3 +++ b/man3/pthread_attr_setinheritsched.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_ATTR_SETINHERITSCHED 3 (date) "Linux man-pages (unreleased)" +.TH pthread_attr_setinheritsched 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_attr_setinheritsched, pthread_attr_getinheritsched \- set/get inherit-scheduler attribute in thread attributes object diff --git a/man3/pthread_attr_setschedparam.3 b/man3/pthread_attr_setschedparam.3 index 9f77d23486..37bdc0423f 100644 --- a/man3/pthread_attr_setschedparam.3 +++ b/man3/pthread_attr_setschedparam.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_ATTR_SETSCHEDPARAM 3 (date) "Linux man-pages (unreleased)" +.TH pthread_attr_setschedparam 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_attr_setschedparam, pthread_attr_getschedparam \- set/get scheduling parameter attributes in thread attributes object diff --git a/man3/pthread_attr_setschedpolicy.3 b/man3/pthread_attr_setschedpolicy.3 index c8a5ebc6e2..355bbfdcca 100644 --- a/man3/pthread_attr_setschedpolicy.3 +++ b/man3/pthread_attr_setschedpolicy.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_ATTR_SETSCHEDPOLICY 3 (date) "Linux man-pages (unreleased)" +.TH pthread_attr_setschedpolicy 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_attr_setschedpolicy, pthread_attr_getschedpolicy \- set/get scheduling policy attribute in thread attributes object diff --git a/man3/pthread_attr_setscope.3 b/man3/pthread_attr_setscope.3 index fdf10a1f09..4be4a31807 100644 --- a/man3/pthread_attr_setscope.3 +++ b/man3/pthread_attr_setscope.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_ATTR_SETSCOPE 3 (date) "Linux man-pages (unreleased)" +.TH pthread_attr_setscope 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_attr_setscope, pthread_attr_getscope \- set/get contention scope attribute in thread attributes object diff --git a/man3/pthread_attr_setsigmask_np.3 b/man3/pthread_attr_setsigmask_np.3 index a2c7595cd5..136ab6ae82 100644 --- a/man3/pthread_attr_setsigmask_np.3 +++ b/man3/pthread_attr_setsigmask_np.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_ATTR_SETSIGMASK_NP 3 (date) "Linux man-pages (unreleased)" +.TH pthread_attr_setsigmask_np 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_attr_setsigmask_np, pthread_attr_getsigmask_np \- set/get signal mask attribute in thread attributes object diff --git a/man3/pthread_attr_setstack.3 b/man3/pthread_attr_setstack.3 index ad364dd753..19b8e44ad4 100644 --- a/man3/pthread_attr_setstack.3 +++ b/man3/pthread_attr_setstack.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_ATTR_SETSTACK 3 (date) "Linux man-pages (unreleased)" +.TH pthread_attr_setstack 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_attr_setstack, pthread_attr_getstack \- set/get stack attributes in thread attributes object diff --git a/man3/pthread_attr_setstackaddr.3 b/man3/pthread_attr_setstackaddr.3 index e0e4ac1466..3905b9b13e 100644 --- a/man3/pthread_attr_setstackaddr.3 +++ b/man3/pthread_attr_setstackaddr.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_ATTR_SETSTACKADDR 3 (date) "Linux man-pages (unreleased)" +.TH pthread_attr_setstackaddr 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_attr_setstackaddr, pthread_attr_getstackaddr \- set/get stack address attribute in thread attributes object diff --git a/man3/pthread_attr_setstacksize.3 b/man3/pthread_attr_setstacksize.3 index 82f97b820a..15f3a2c2e8 100644 --- a/man3/pthread_attr_setstacksize.3 +++ b/man3/pthread_attr_setstacksize.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_ATTR_SETSTACKSIZE 3 (date) "Linux man-pages (unreleased)" +.TH pthread_attr_setstacksize 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_attr_setstacksize, pthread_attr_getstacksize \- set/get stack size attribute in thread attributes object diff --git a/man3/pthread_cancel.3 b/man3/pthread_cancel.3 index 00b5c679d5..14542a1c34 100644 --- a/man3/pthread_cancel.3 +++ b/man3/pthread_cancel.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_CANCEL 3 (date) "Linux man-pages (unreleased)" +.TH pthread_cancel 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_cancel \- send a cancelation request to a thread .SH LIBRARY diff --git a/man3/pthread_cleanup_push.3 b/man3/pthread_cleanup_push.3 index 273e9fa46e..79f781e053 100644 --- a/man3/pthread_cleanup_push.3 +++ b/man3/pthread_cleanup_push.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_CLEANUP_PUSH 3 (date) "Linux man-pages (unreleased)" +.TH pthread_cleanup_push 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_cleanup_push, pthread_cleanup_pop \- push and pop thread cancelation clean-up handlers diff --git a/man3/pthread_cleanup_push_defer_np.3 b/man3/pthread_cleanup_push_defer_np.3 index c23ff2b2c7..e7eb957e58 100644 --- a/man3/pthread_cleanup_push_defer_np.3 +++ b/man3/pthread_cleanup_push_defer_np.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_CLEANUP_PUSH_DEFER_NP 3 (date) "Linux man-pages (unreleased)" +.TH pthread_cleanup_push_defer_np 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_cleanup_push_defer_np, pthread_cleanup_pop_restore_np \- push and pop thread cancelation clean-up handlers while saving cancelability type diff --git a/man3/pthread_create.3 b/man3/pthread_create.3 index 3b27a8db4c..8d7db57bd3 100644 --- a/man3/pthread_create.3 +++ b/man3/pthread_create.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_CREATE 3 (date) "Linux man-pages (unreleased)" +.TH pthread_create 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_create \- create a new thread .SH LIBRARY diff --git a/man3/pthread_detach.3 b/man3/pthread_detach.3 index d322b31f6d..544a917af7 100644 --- a/man3/pthread_detach.3 +++ b/man3/pthread_detach.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_DETACH 3 (date) "Linux man-pages (unreleased)" +.TH pthread_detach 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_detach \- detach a thread .SH LIBRARY diff --git a/man3/pthread_equal.3 b/man3/pthread_equal.3 index 77ef4e5b5c..210c612904 100644 --- a/man3/pthread_equal.3 +++ b/man3/pthread_equal.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_EQUAL 3 (date) "Linux man-pages (unreleased)" +.TH pthread_equal 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_equal \- compare thread IDs .SH LIBRARY diff --git a/man3/pthread_exit.3 b/man3/pthread_exit.3 index 5327bc2c69..5d30f30fef 100644 --- a/man3/pthread_exit.3 +++ b/man3/pthread_exit.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_EXIT 3 (date) "Linux man-pages (unreleased)" +.TH pthread_exit 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_exit \- terminate calling thread .SH LIBRARY diff --git a/man3/pthread_getattr_default_np.3 b/man3/pthread_getattr_default_np.3 index 47d16b6b15..8ecc8c6a95 100644 --- a/man3/pthread_getattr_default_np.3 +++ b/man3/pthread_getattr_default_np.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_GETATTR_DEFAULT_NP 3 (date) "Linux man-pages (unreleased)" +.TH pthread_getattr_default_np 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_getattr_default_np, pthread_setattr_default_np, \- get or set default thread-creation attributes diff --git a/man3/pthread_getattr_np.3 b/man3/pthread_getattr_np.3 index 32c9db6edb..047379e5bb 100644 --- a/man3/pthread_getattr_np.3 +++ b/man3/pthread_getattr_np.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_GETATTR_NP 3 (date) "Linux man-pages (unreleased)" +.TH pthread_getattr_np 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_getattr_np \- get attributes of created thread .SH LIBRARY diff --git a/man3/pthread_getcpuclockid.3 b/man3/pthread_getcpuclockid.3 index 72a6a0868e..7bbc5bdee7 100644 --- a/man3/pthread_getcpuclockid.3 +++ b/man3/pthread_getcpuclockid.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_GETCPUCLOCKID 3 (date) "Linux man-pages (unreleased)" +.TH pthread_getcpuclockid 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_getcpuclockid \- retrieve ID of a thread's CPU time clock .SH LIBRARY diff --git a/man3/pthread_join.3 b/man3/pthread_join.3 index 3a6deb4dce..d56f326b89 100644 --- a/man3/pthread_join.3 +++ b/man3/pthread_join.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_JOIN 3 (date) "Linux man-pages (unreleased)" +.TH pthread_join 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_join \- join with a terminated thread .SH LIBRARY diff --git a/man3/pthread_kill.3 b/man3/pthread_kill.3 index ee138becb6..141f0cf9e5 100644 --- a/man3/pthread_kill.3 +++ b/man3/pthread_kill.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_KILL 3 (date) "Linux man-pages (unreleased)" +.TH pthread_kill 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_kill \- send a signal to a thread .SH LIBRARY diff --git a/man3/pthread_kill_other_threads_np.3 b/man3/pthread_kill_other_threads_np.3 index 161baf9fb9..4606c4b710 100644 --- a/man3/pthread_kill_other_threads_np.3 +++ b/man3/pthread_kill_other_threads_np.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_KILL_OTHER_THREADS_NP 3 (date) "Linux man-pages (unreleased)" +.TH pthread_kill_other_threads_np 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_kill_other_threads_np \- terminate all other threads in process .SH LIBRARY diff --git a/man3/pthread_mutex_consistent.3 b/man3/pthread_mutex_consistent.3 index 89f8e45c80..2941e93ca3 100644 --- a/man3/pthread_mutex_consistent.3 +++ b/man3/pthread_mutex_consistent.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_MUTEX_CONSISTENT 3 (date) "Linux man-pages (unreleased)" +.TH pthread_mutex_consistent 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_mutex_consistent \- make a robust mutex consistent .SH LIBRARY diff --git a/man3/pthread_mutexattr_getpshared.3 b/man3/pthread_mutexattr_getpshared.3 index 8560a42077..8f55ffd122 100644 --- a/man3/pthread_mutexattr_getpshared.3 +++ b/man3/pthread_mutexattr_getpshared.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_MUTEXATTR_GETPSHARED 3 (date) "Linux man-pages (unreleased)" +.TH pthread_mutexattr_getpshared 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_mutexattr_getpshared, pthread_mutexattr_setpshared \- get/set process-shared mutex attribute diff --git a/man3/pthread_mutexattr_init.3 b/man3/pthread_mutexattr_init.3 index 3136f47762..6024048cc6 100644 --- a/man3/pthread_mutexattr_init.3 +++ b/man3/pthread_mutexattr_init.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_MUTEXATTR_INIT 3 (date) "Linux man-pages (unreleased)" +.TH pthread_mutexattr_init 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_mutexattr_init, pthread_mutexattr_destroy \- initialize and destroy a mutex attributes object diff --git a/man3/pthread_mutexattr_setrobust.3 b/man3/pthread_mutexattr_setrobust.3 index a430be2dfd..e8a9b344d1 100644 --- a/man3/pthread_mutexattr_setrobust.3 +++ b/man3/pthread_mutexattr_setrobust.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_MUTEXATTR_SETROBUST 3 (date) "Linux man-pages (unreleased)" +.TH pthread_mutexattr_setrobust 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_mutexattr_getrobust, pthread_mutexattr_setrobust \- get and set the robustness attribute of a mutex attributes object diff --git a/man3/pthread_rwlockattr_setkind_np.3 b/man3/pthread_rwlockattr_setkind_np.3 index dad5560f9a..7e750045c5 100644 --- a/man3/pthread_rwlockattr_setkind_np.3 +++ b/man3/pthread_rwlockattr_setkind_np.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_RWLOCKATTR_SETKIND_NP 3 (date) "Linux man-pages (unreleased)" +.TH pthread_rwlockattr_setkind_np 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_rwlockattr_setkind_np, pthread_rwlockattr_getkind_np \- set/get the read-write lock kind of the thread read-write lock attribute object diff --git a/man3/pthread_self.3 b/man3/pthread_self.3 index 47e1e8a2df..1228f234a3 100644 --- a/man3/pthread_self.3 +++ b/man3/pthread_self.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_SELF 3 (date) "Linux man-pages (unreleased)" +.TH pthread_self 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_self \- obtain ID of the calling thread .SH LIBRARY diff --git a/man3/pthread_setaffinity_np.3 b/man3/pthread_setaffinity_np.3 index e55a4f8db5..07b756f6be 100644 --- a/man3/pthread_setaffinity_np.3 +++ b/man3/pthread_setaffinity_np.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_SETAFFINITY_NP 3 (date) "Linux man-pages (unreleased)" +.TH pthread_setaffinity_np 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_setaffinity_np, pthread_getaffinity_np \- set/get CPU affinity of a thread diff --git a/man3/pthread_setcancelstate.3 b/man3/pthread_setcancelstate.3 index 3105cbebf5..924d0f2b29 100644 --- a/man3/pthread_setcancelstate.3 +++ b/man3/pthread_setcancelstate.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_SETCANCELSTATE 3 (date) "Linux man-pages (unreleased)" +.TH pthread_setcancelstate 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_setcancelstate, pthread_setcanceltype \- set cancelability state and type diff --git a/man3/pthread_setconcurrency.3 b/man3/pthread_setconcurrency.3 index 24b5289310..e9e1146b08 100644 --- a/man3/pthread_setconcurrency.3 +++ b/man3/pthread_setconcurrency.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_SETCONCURRENCY 3 (date) "Linux man-pages (unreleased)" +.TH pthread_setconcurrency 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_setconcurrency, pthread_getconcurrency \- set/get the concurrency level diff --git a/man3/pthread_setname_np.3 b/man3/pthread_setname_np.3 index 18cc4a08d3..c08cc95968 100644 --- a/man3/pthread_setname_np.3 +++ b/man3/pthread_setname_np.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_SETNAME_NP 3 (date) "Linux man-pages (unreleased)" +.TH pthread_setname_np 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_setname_np, pthread_getname_np \- set/get the name of a thread .SH LIBRARY diff --git a/man3/pthread_setschedparam.3 b/man3/pthread_setschedparam.3 index b84370e7eb..9030c7ca68 100644 --- a/man3/pthread_setschedparam.3 +++ b/man3/pthread_setschedparam.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_SETSCHEDPARAM 3 (date) "Linux man-pages (unreleased)" +.TH pthread_setschedparam 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_setschedparam, pthread_getschedparam \- set/get scheduling policy and parameters of a thread diff --git a/man3/pthread_setschedprio.3 b/man3/pthread_setschedprio.3 index df4fa398da..965bfa8057 100644 --- a/man3/pthread_setschedprio.3 +++ b/man3/pthread_setschedprio.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_SETSCHEDPRIO 3 (date) "Linux man-pages (unreleased)" +.TH pthread_setschedprio 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_setschedprio \- set scheduling priority of a thread .SH LIBRARY diff --git a/man3/pthread_sigmask.3 b/man3/pthread_sigmask.3 index fd43a13e4c..d34eb5b5bb 100644 --- a/man3/pthread_sigmask.3 +++ b/man3/pthread_sigmask.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_SIGMASK 3 (date) "Linux man-pages (unreleased)" +.TH pthread_sigmask 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_sigmask \- examine and change mask of blocked signals .SH LIBRARY diff --git a/man3/pthread_sigqueue.3 b/man3/pthread_sigqueue.3 index e54886239a..890f25a491 100644 --- a/man3/pthread_sigqueue.3 +++ b/man3/pthread_sigqueue.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_SIGQUEUE 3 (date) "Linux man-pages (unreleased)" +.TH pthread_sigqueue 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_sigqueue \- queue a signal and data to a thread .SH LIBRARY diff --git a/man3/pthread_spin_init.3 b/man3/pthread_spin_init.3 index 920e6ba1cb..23a8beb971 100644 --- a/man3/pthread_spin_init.3 +++ b/man3/pthread_spin_init.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_SPIN_INIT 3 (date) "Linux man-pages (unreleased)" +.TH pthread_spin_init 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_spin_init, pthread_spin_destroy \- initialize or destroy a spin lock .SH LIBRARY diff --git a/man3/pthread_spin_lock.3 b/man3/pthread_spin_lock.3 index e9abc13cab..e8c8181bde 100644 --- a/man3/pthread_spin_lock.3 +++ b/man3/pthread_spin_lock.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_SPIN_LOCK 3 (date) "Linux man-pages (unreleased)" +.TH pthread_spin_lock 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_spin_lock, pthread_spin_trylock, pthread_spin_unlock \- lock and unlock a spin lock diff --git a/man3/pthread_testcancel.3 b/man3/pthread_testcancel.3 index f56ece2bbf..65e2a1364c 100644 --- a/man3/pthread_testcancel.3 +++ b/man3/pthread_testcancel.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_TESTCANCEL 3 (date) "Linux man-pages (unreleased)" +.TH pthread_testcancel 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_testcancel \- request delivery of any pending cancelation request .SH LIBRARY diff --git a/man3/pthread_tryjoin_np.3 b/man3/pthread_tryjoin_np.3 index 868f347263..86afc00293 100644 --- a/man3/pthread_tryjoin_np.3 +++ b/man3/pthread_tryjoin_np.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_TRYJOIN_NP 3 (date) "Linux man-pages (unreleased)" +.TH pthread_tryjoin_np 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_tryjoin_np, pthread_timedjoin_np \- try to join with a terminated thread diff --git a/man3/pthread_yield.3 b/man3/pthread_yield.3 index 647efefb80..8ad61a3a1f 100644 --- a/man3/pthread_yield.3 +++ b/man3/pthread_yield.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTHREAD_YIELD 3 (date) "Linux man-pages (unreleased)" +.TH pthread_yield 3 (date) "Linux man-pages (unreleased)" .SH NAME pthread_yield \- yield the processor .SH LIBRARY diff --git a/man3/ptsname.3 b/man3/ptsname.3 index 5640af25a7..6b37cfc36a 100644 --- a/man3/ptsname.3 +++ b/man3/ptsname.3 @@ -4,7 +4,7 @@ .\" .\" 2004-12-17, mtk, added description of ptsname_r() + ERRORS .\" -.TH PTSNAME 3 (date) "Linux man-pages (unreleased)" +.TH ptsname 3 (date) "Linux man-pages (unreleased)" .SH NAME ptsname, ptsname_r \- get the name of the slave pseudoterminal .SH LIBRARY diff --git a/man3/putenv.3 b/man3/putenv.3 index fcc8fcbeee..2f81a97935 100644 --- a/man3/putenv.3 +++ b/man3/putenv.3 @@ -13,7 +13,7 @@ .\" Modified Mon Oct 11 11:11:11 1999 by Andries Brouwer (aeb@cwi.nl) .\" Modified Wed Nov 10 00:02:26 1999 by Andries Brouwer (aeb@cwi.nl) .\" Modified Sun May 20 22:17:20 2001 by Andries Brouwer (aeb@cwi.nl) -.TH PUTENV 3 (date) "Linux man-pages (unreleased)" +.TH putenv 3 (date) "Linux man-pages (unreleased)" .SH NAME putenv \- change or add an environment variable .SH LIBRARY diff --git a/man3/putgrent.3 b/man3/putgrent.3 index 4724d1c270..a6b6f47206 100644 --- a/man3/putgrent.3 +++ b/man3/putgrent.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH PUTGRENT 3 (date) "Linux man-pages (unreleased)" +.TH putgrent 3 (date) "Linux man-pages (unreleased)" .SH NAME putgrent \- write a group database entry to a file .SH LIBRARY diff --git a/man3/putpwent.3 b/man3/putpwent.3 index 62e68cbbb7..103e31fcc1 100644 --- a/man3/putpwent.3 +++ b/man3/putpwent.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 18:43:46 1993 by Rik Faith (faith@cs.unc.edu) -.TH PUTPWENT 3 (date) "Linux man-pages (unreleased)" +.TH putpwent 3 (date) "Linux man-pages (unreleased)" .SH NAME putpwent \- write a password file entry .SH LIBRARY diff --git a/man3/puts.3 b/man3/puts.3 index c2e278a80c..ece9270e80 100644 --- a/man3/puts.3 +++ b/man3/puts.3 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" Modified Sat Jul 24 18:42:59 1993 by Rik Faith (faith@cs.unc.edu) -.TH PUTS 3 (date) "Linux man-pages (unreleased)" +.TH puts 3 (date) "Linux man-pages (unreleased)" .SH NAME fputc, fputs, putc, putchar, puts \- output of characters and strings .SH LIBRARY diff --git a/man3/putwchar.3 b/man3/putwchar.3 index 23590632b5..8cda071151 100644 --- a/man3/putwchar.3 +++ b/man3/putwchar.3 @@ -9,7 +9,7 @@ .\" http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH PUTWCHAR 3 (date) "Linux man-pages (unreleased)" +.TH putwchar 3 (date) "Linux man-pages (unreleased)" .SH NAME putwchar \- write a wide character to standard output .SH LIBRARY diff --git a/man3/qecvt.3 b/man3/qecvt.3 index cb3dd283ac..71fdfd4906 100644 --- a/man3/qecvt.3 +++ b/man3/qecvt.3 @@ -5,7 +5,7 @@ .\" This replaces an earlier man page written by Walter Harms .\" . .\" -.TH QECVT 3 (date) "Linux man-pages (unreleased)" +.TH qecvt 3 (date) "Linux man-pages (unreleased)" .SH NAME qecvt, qfcvt, qgcvt \- convert a floating-point number to a string .SH LIBRARY diff --git a/man3/raise.3 b/man3/raise.3 index a5f08774aa..ce6eba7c40 100644 --- a/man3/raise.3 +++ b/man3/raise.3 @@ -6,7 +6,7 @@ .\" Modified Sat Jul 24 18:40:56 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified 1995 by Mike Battersby (mib@deakin.edu.au) .\" -.TH RAISE 3 (date) "Linux man-pages (unreleased)" +.TH raise 3 (date) "Linux man-pages (unreleased)" .SH NAME raise \- send a signal to the caller .SH LIBRARY diff --git a/man3/rand.3 b/man3/rand.3 index 1d0ecc1c97..e656e581d3 100644 --- a/man3/rand.3 +++ b/man3/rand.3 @@ -18,7 +18,7 @@ .\" Modified 2003-11-15, aeb, added rand_r .\" 2010-09-13, mtk, added example program .\" -.TH RAND 3 (date) "Linux man-pages (unreleased)" +.TH rand 3 (date) "Linux man-pages (unreleased)" .SH NAME rand, rand_r, srand \- pseudo-random number generator .SH LIBRARY diff --git a/man3/random.3 b/man3/random.3 index 72aa95d7d9..752e7f9eef 100644 --- a/man3/random.3 +++ b/man3/random.3 @@ -10,7 +10,7 @@ .\" Modified Sat Jul 24 18:13:39 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Sun Aug 20 21:47:07 2000, aeb .\" -.TH RANDOM 3 (date) "Linux man-pages (unreleased)" +.TH random 3 (date) "Linux man-pages (unreleased)" .SH NAME random, srandom, initstate, setstate \- random number generator .SH LIBRARY diff --git a/man3/random_r.3 b/man3/random_r.3 index 15c13751a9..66d5c3de9f 100644 --- a/man3/random_r.3 +++ b/man3/random_r.3 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH RANDOM_R 3 (date) "Linux man-pages (unreleased)" +.TH random_r 3 (date) "Linux man-pages (unreleased)" .SH NAME random_r, srandom_r, initstate_r, setstate_r \- reentrant random number generator diff --git a/man3/rcmd.3 b/man3/rcmd.3 index 33c05240c4..b2fb892d47 100644 --- a/man3/rcmd.3 +++ b/man3/rcmd.3 @@ -12,7 +12,7 @@ .\" .\" 2007-12-08, mtk, Converted from mdoc to man macros .\" -.TH RCMD 3 (date) "Linux man-pages (unreleased)" +.TH rcmd 3 (date) "Linux man-pages (unreleased)" .SH NAME rcmd, rresvport, iruserok, ruserok, rcmd_af, rresvport_af, iruserok_af, ruserok_af \- routines for returning a diff --git a/man3/re_comp.3 b/man3/re_comp.3 index 973f6e2c36..f9bb0097c4 100644 --- a/man3/re_comp.3 +++ b/man3/re_comp.3 @@ -4,7 +4,7 @@ .\" .\" Wed Jun 14 16:10:28 BST 1995 Wilf. (G.Wilford@@ee.surrey.ac.uk) .\" -.TH RE_COMP 3 (date) "Linux man-pages (unreleased)" +.TH re_comp 3 (date) "Linux man-pages (unreleased)" .SH NAME re_comp, re_exec \- BSD regex functions .SH LIBRARY diff --git a/man3/readdir.3 b/man3/readdir.3 index 03b2ecf948..54bfd88a5c 100644 --- a/man3/readdir.3 +++ b/man3/readdir.3 @@ -13,7 +13,7 @@ .\" 2007-07-30 Ulrich Drepper , mtk: .\" Rework discussion of nonstandard structure fields. .\" -.TH READDIR 3 (date) "Linux man-pages (unreleased)" +.TH readdir 3 (date) "Linux man-pages (unreleased)" .SH NAME readdir \- read a directory .SH LIBRARY diff --git a/man3/readdir_r.3 b/man3/readdir_r.3 index b32ab4c5ee..eaefbde873 100644 --- a/man3/readdir_r.3 +++ b/man3/readdir_r.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH READDIR_R 3 (date) "Linux man-pages (unreleased)" +.TH readdir_r 3 (date) "Linux man-pages (unreleased)" .SH NAME readdir_r \- read a directory .SH LIBRARY diff --git a/man3/realpath.3 b/man3/realpath.3 index 0d54b8d979..99dbef2fdf 100644 --- a/man3/realpath.3 +++ b/man3/realpath.3 @@ -5,7 +5,7 @@ .\" Rewritten old page, 990824, aeb@cwi.nl .\" 2004-12-14, mtk, added discussion of resolved_path == NULL .\" -.TH REALPATH 3 (date) "Linux man-pages (unreleased)" +.TH realpath 3 (date) "Linux man-pages (unreleased)" .SH NAME realpath \- return the canonicalized absolute pathname .SH LIBRARY diff --git a/man3/recno.3 b/man3/recno.3 index 9aff91a840..0c28f746c0 100644 --- a/man3/recno.3 +++ b/man3/recno.3 @@ -5,7 +5,7 @@ .\" .\" @(#)recno.3 8.5 (Berkeley) 8/18/94 .\" -.TH RECNO 3 (date) "Linux man-pages (unreleased)" +.TH recno 3 (date) "Linux man-pages (unreleased)" .UC 7 .SH NAME recno \- record number database access method diff --git a/man3/remainder.3 b/man3/remainder.3 index b7c8495382..0f70006c80 100644 --- a/man3/remainder.3 +++ b/man3/remainder.3 @@ -14,7 +14,7 @@ .\" (walter.harms@informatik.uni-oldenburg.de) .\" Modified 2003-11-18, 2004-10-05 aeb .\" -.TH REMAINDER 3 (date) "Linux man-pages (unreleased)" +.TH remainder 3 (date) "Linux man-pages (unreleased)" .SH NAME drem, dremf, dreml, remainder, remainderf, remainderl \- \ floating-point remainder function diff --git a/man3/remove.3 b/man3/remove.3 index f85f730c91..86b30eca61 100644 --- a/man3/remove.3 +++ b/man3/remove.3 @@ -8,7 +8,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH REMOVE 3 (date) "Linux man-pages (unreleased)" +.TH remove 3 (date) "Linux man-pages (unreleased)" .SH NAME remove \- remove a file or directory .SH LIBRARY diff --git a/man3/remquo.3 b/man3/remquo.3 index 473713c598..ef55a06a98 100644 --- a/man3/remquo.3 +++ b/man3/remquo.3 @@ -7,7 +7,7 @@ .\" based on glibc infopages .\" polished, aeb .\" -.TH REMQUO 3 (date) "Linux man-pages (unreleased)" +.TH remquo 3 (date) "Linux man-pages (unreleased)" .SH NAME remquo, remquof, remquol \- remainder and part of quotient .SH LIBRARY diff --git a/man3/rewinddir.3 b/man3/rewinddir.3 index e347c0b4e7..23fdccc895 100644 --- a/man3/rewinddir.3 +++ b/man3/rewinddir.3 @@ -8,7 +8,7 @@ .\" 386BSD man pages .\" Modified Sat Jul 24 18:29:11 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified 11 June 1995 by Andries Brouwer (aeb@cwi.nl) -.TH REWINDDIR 3 (date) "Linux man-pages (unreleased)" +.TH rewinddir 3 (date) "Linux man-pages (unreleased)" .SH NAME rewinddir \- reset directory stream .SH LIBRARY diff --git a/man3/rexec.3 b/man3/rexec.3 index 0274bbbe7e..0cdd0ac66f 100644 --- a/man3/rexec.3 +++ b/man3/rexec.3 @@ -10,7 +10,7 @@ .\" .\" 2013-06-21, mtk, Converted from mdoc to man macros .\" -.TH REXEC 3 (date) "Linux man-pages (unreleased)" +.TH rexec 3 (date) "Linux man-pages (unreleased)" .SH NAME rexec, rexec_af \- return stream to a remote command .SH LIBRARY diff --git a/man3/rint.3 b/man3/rint.3 index c595374436..ad78768be9 100644 --- a/man3/rint.3 +++ b/man3/rint.3 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH RINT 3 (date) "Linux man-pages (unreleased)" +.TH rint 3 (date) "Linux man-pages (unreleased)" .SH NAME nearbyint, nearbyintf, nearbyintl, rint, rintf, rintl \- round to nearest integer diff --git a/man3/round.3 b/man3/round.3 index 2f3efaf126..81140c56e3 100644 --- a/man3/round.3 +++ b/man3/round.3 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH ROUND 3 (date) "Linux man-pages (unreleased)" +.TH round 3 (date) "Linux man-pages (unreleased)" .SH NAME round, roundf, roundl \- round to nearest integer, away from zero .SH LIBRARY diff --git a/man3/rpc.3 b/man3/rpc.3 index f4cf1ea692..44a0bb9898 100644 --- a/man3/rpc.3 +++ b/man3/rpc.3 @@ -8,7 +8,7 @@ .\" .\" 2007-12-30, mtk, Convert function prototypes to modern C syntax .\" -.TH RPC 3 (date) "Linux man-pages (unreleased)" +.TH rpc 3 (date) "Linux man-pages (unreleased)" .SH NAME rpc \- library routines for remote procedure calls .SH LIBRARY diff --git a/man3/rpmatch.3 b/man3/rpmatch.3 index 418050ec0f..d85c3bf943 100644 --- a/man3/rpmatch.3 +++ b/man3/rpmatch.3 @@ -26,7 +26,7 @@ .\" .\" 2006-05-19, mtk, various edits and example program .\" -.TH RPMATCH 3 (date) "Linux man-pages (unreleased)" +.TH rpmatch 3 (date) "Linux man-pages (unreleased)" .SH NAME rpmatch \- determine if the answer to a question is affirmative or negative .SH LIBRARY diff --git a/man3/rtime.3 b/man3/rtime.3 index 735b4680e9..d57684f89e 100644 --- a/man3/rtime.3 +++ b/man3/rtime.3 @@ -7,7 +7,7 @@ .\" .\" Slightly polished, aeb, 2003-04-06 .\" -.TH RTIME 3 (date) "Linux man-pages (unreleased)" +.TH rtime 3 (date) "Linux man-pages (unreleased)" .SH NAME rtime \- get time from a remote machine .SH LIBRARY diff --git a/man3/rtnetlink.3 b/man3/rtnetlink.3 index 42036ac5a0..460b2b5a58 100644 --- a/man3/rtnetlink.3 +++ b/man3/rtnetlink.3 @@ -9,7 +9,7 @@ .\" .\" $Id: rtnetlink.3,v 1.2 1999/05/18 10:35:10 freitag Exp $ .\" -.TH RTNETLINK 3 (date) "Linux man-pages (unreleased)" +.TH rtnetlink 3 (date) "Linux man-pages (unreleased)" .SH NAME rtnetlink \- macros to manipulate rtnetlink messages .SH LIBRARY diff --git a/man3/scalb.3 b/man3/scalb.3 index d645ece5e8..37c095790b 100644 --- a/man3/scalb.3 +++ b/man3/scalb.3 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SCALB 3 (date) "Linux man-pages (unreleased)" +.TH scalb 3 (date) "Linux man-pages (unreleased)" .SH NAME scalb, scalbf, scalbl \- multiply floating-point number by integral power of radix (OBSOLETE) diff --git a/man3/scalbln.3 b/man3/scalbln.3 index 6b2bc21c1c..36c7448618 100644 --- a/man3/scalbln.3 +++ b/man3/scalbln.3 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SCALBLN 3 (date) "Linux man-pages (unreleased)" +.TH scalbln 3 (date) "Linux man-pages (unreleased)" .SH NAME scalbn, scalbnf, scalbnl, scalbln, scalblnf, scalblnl \- multiply floating-point number by integral power of radix diff --git a/man3/scanf.3 b/man3/scanf.3 index 979d76cb5f..211dd8ef6b 100644 --- a/man3/scanf.3 +++ b/man3/scanf.3 @@ -21,7 +21,7 @@ .\" Add ERRORS section. .\" Document the 'a' and 'm' modifiers for dynamic string allocation. .\" -.TH SCANF 3 (date) "Linux man-pages (unreleased)" +.TH scanf 3 (date) "Linux man-pages (unreleased)" .SH NAME scanf, fscanf, sscanf, vscanf, vsscanf, vfscanf \- input format conversion .SH LIBRARY diff --git a/man3/sched_getcpu.3 b/man3/sched_getcpu.3 index cf9a7ffa69..c5b3b0b6d3 100644 --- a/man3/sched_getcpu.3 +++ b/man3/sched_getcpu.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SCHED_GETCPU 3 (date) "Linux man-pages (unreleased)" +.TH sched_getcpu 3 (date) "Linux man-pages (unreleased)" .SH NAME sched_getcpu \- determine CPU on which the calling thread is running .SH LIBRARY diff --git a/man3/seekdir.3 b/man3/seekdir.3 index be9c8b2aa8..4f9121536e 100644 --- a/man3/seekdir.3 +++ b/man3/seekdir.3 @@ -8,7 +8,7 @@ .\" 386BSD man pages .\" Modified Sat Jul 24 18:25:21 1993 by Rik Faith (faith@cs.unc.edu) .\" -.TH SEEKDIR 3 (date) "Linux man-pages (unreleased)" +.TH seekdir 3 (date) "Linux man-pages (unreleased)" .SH NAME seekdir \- set the position of the next readdir() call in the directory stream. diff --git a/man3/sem_close.3 b/man3/sem_close.3 index f2b5ea1e96..813fa20f8c 100644 --- a/man3/sem_close.3 +++ b/man3/sem_close.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SEM_CLOSE 3 (date) "Linux man-pages (unreleased)" +.TH sem_close 3 (date) "Linux man-pages (unreleased)" .SH NAME sem_close \- close a named semaphore .SH LIBRARY diff --git a/man3/sem_destroy.3 b/man3/sem_destroy.3 index bf10dcae40..34b41d2c98 100644 --- a/man3/sem_destroy.3 +++ b/man3/sem_destroy.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SEM_DESTROY 3 (date) "Linux man-pages (unreleased)" +.TH sem_destroy 3 (date) "Linux man-pages (unreleased)" .SH NAME sem_destroy \- destroy an unnamed semaphore .SH LIBRARY diff --git a/man3/sem_getvalue.3 b/man3/sem_getvalue.3 index 2680d9443d..7d78bfa2c0 100644 --- a/man3/sem_getvalue.3 +++ b/man3/sem_getvalue.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SEM_GETVALUE 3 (date) "Linux man-pages (unreleased)" +.TH sem_getvalue 3 (date) "Linux man-pages (unreleased)" .SH NAME sem_getvalue \- get the value of a semaphore .SH LIBRARY diff --git a/man3/sem_init.3 b/man3/sem_init.3 index 038003aa42..f278b3d84d 100644 --- a/man3/sem_init.3 +++ b/man3/sem_init.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SEM_INIT 3 (date) "Linux man-pages (unreleased)" +.TH sem_init 3 (date) "Linux man-pages (unreleased)" .SH NAME sem_init \- initialize an unnamed semaphore .SH LIBRARY diff --git a/man3/sem_open.3 b/man3/sem_open.3 index f46f12267b..37c29aa6a8 100644 --- a/man3/sem_open.3 +++ b/man3/sem_open.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SEM_OPEN 3 (date) "Linux man-pages (unreleased)" +.TH sem_open 3 (date) "Linux man-pages (unreleased)" .SH NAME sem_open \- initialize and open a named semaphore .SH LIBRARY diff --git a/man3/sem_post.3 b/man3/sem_post.3 index efde7c9b3b..b93ee0b5e1 100644 --- a/man3/sem_post.3 +++ b/man3/sem_post.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SEM_POST 3 (date) "Linux man-pages (unreleased)" +.TH sem_post 3 (date) "Linux man-pages (unreleased)" .SH NAME sem_post \- unlock a semaphore .SH LIBRARY diff --git a/man3/sem_unlink.3 b/man3/sem_unlink.3 index 3dbc66358c..ad69298be8 100644 --- a/man3/sem_unlink.3 +++ b/man3/sem_unlink.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SEM_UNLINK 3 (date) "Linux man-pages (unreleased)" +.TH sem_unlink 3 (date) "Linux man-pages (unreleased)" .SH NAME sem_unlink \- remove a named semaphore .SH LIBRARY diff --git a/man3/sem_wait.3 b/man3/sem_wait.3 index a4e491e979..1bf9ebead5 100644 --- a/man3/sem_wait.3 +++ b/man3/sem_wait.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SEM_WAIT 3 (date) "Linux man-pages (unreleased)" +.TH sem_wait 3 (date) "Linux man-pages (unreleased)" .SH NAME sem_wait, sem_timedwait, sem_trywait \- lock a semaphore .SH LIBRARY diff --git a/man3/setaliasent.3 b/man3/setaliasent.3 index 422665232d..08d47f7a33 100644 --- a/man3/setaliasent.3 +++ b/man3/setaliasent.3 @@ -4,7 +4,7 @@ .\" .\" Polished a bit, added a little, aeb .\" -.TH SETALIASENT 3 (date) "Linux man-pages (unreleased)" +.TH setaliasent 3 (date) "Linux man-pages (unreleased)" .SH NAME setaliasent, endaliasent, getaliasent, getaliasent_r, getaliasbyname, getaliasbyname_r \- read an alias entry diff --git a/man3/setbuf.3 b/man3/setbuf.3 index 50c448c9a3..a09adba36c 100644 --- a/man3/setbuf.3 +++ b/man3/setbuf.3 @@ -17,7 +17,7 @@ .\" Correction, 2000-03-03, Andreas Jaeger .\" Added return value for setvbuf, aeb, .\" -.TH SETBUF 3 (date) "Linux man-pages (unreleased)" +.TH setbuf 3 (date) "Linux man-pages (unreleased)" .SH NAME setbuf, setbuffer, setlinebuf, setvbuf \- stream buffering operations .SH LIBRARY diff --git a/man3/setenv.3 b/man3/setenv.3 index d89a4e5e3f..7a377cdf8a 100644 --- a/man3/setenv.3 +++ b/man3/setenv.3 @@ -14,7 +14,7 @@ .\" Noted nonstandard behavior of setenv() if name contains '=' .\" 2005-08-12, mtk, glibc 2.3.4 fixed the "name contains '='" bug .\" -.TH SETENV 3 (date) "Linux man-pages (unreleased)" +.TH setenv 3 (date) "Linux man-pages (unreleased)" .SH NAME setenv \- change or add an environment variable .SH LIBRARY diff --git a/man3/setjmp.3 b/man3/setjmp.3 index c2df55cca0..d2850a6a7c 100644 --- a/man3/setjmp.3 +++ b/man3/setjmp.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH SETJMP 3 (date) "Linux man-pages (unreleased)" +.TH setjmp 3 (date) "Linux man-pages (unreleased)" .SH NAME setjmp, sigsetjmp, longjmp, siglongjmp \- performing a nonlocal goto .SH LIBRARY diff --git a/man3/setlocale.3 b/man3/setlocale.3 index e5f840c5eb..1681132ace 100644 --- a/man3/setlocale.3 +++ b/man3/setlocale.3 @@ -9,7 +9,7 @@ .\" Modified Tue Aug 24 17:11:01 1999 by Andries Brouwer (aeb@cwi.nl) .\" Modified Tue Feb 6 03:31:55 2001 by Andries Brouwer (aeb@cwi.nl) .\" -.TH SETLOCALE 3 (date) "Linux man-pages (unreleased)" +.TH setlocale 3 (date) "Linux man-pages (unreleased)" .SH NAME setlocale \- set the current locale .SH LIBRARY diff --git a/man3/setlogmask.3 b/man3/setlogmask.3 index 9bc7acf36d..546a04885d 100644 --- a/man3/setlogmask.3 +++ b/man3/setlogmask.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SETLOGMASK 3 (date) "Linux man-pages (unreleased)" +.TH setlogmask 3 (date) "Linux man-pages (unreleased)" .SH NAME setlogmask \- set log priority mask .SH LIBRARY diff --git a/man3/setnetgrent.3 b/man3/setnetgrent.3 index a1fe205934..5d43114e31 100644 --- a/man3/setnetgrent.3 +++ b/man3/setnetgrent.3 @@ -5,7 +5,7 @@ .\" based on glibc infopages .\" polished - aeb .\" -.TH SETNETGRENT 3 (date) "Linux man-pages (unreleased)" +.TH setnetgrent 3 (date) "Linux man-pages (unreleased)" .SH NAME setnetgrent, endnetgrent, getnetgrent, getnetgrent_r, innetgr \- handle network group entries diff --git a/man3/shm_open.3 b/man3/shm_open.3 index 1451af2907..899a4d97dd 100644 --- a/man3/shm_open.3 +++ b/man3/shm_open.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SHM_OPEN 3 (date) "Linux man-pages (unreleased)" +.TH shm_open 3 (date) "Linux man-pages (unreleased)" .SH NAME shm_open, shm_unlink \- create/open or unlink POSIX shared memory objects .SH LIBRARY diff --git a/man3/siginterrupt.3 b/man3/siginterrupt.3 index 5e4b906831..0a8a42f9ae 100644 --- a/man3/siginterrupt.3 +++ b/man3/siginterrupt.3 @@ -8,7 +8,7 @@ .\" 386BSD man pages .\" Modified Sun Jul 25 10:40:51 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Sun Apr 14 16:20:34 1996 by Andries Brouwer (aeb@cwi.nl) -.TH SIGINTERRUPT 3 (date) "Linux man-pages (unreleased)" +.TH siginterrupt 3 (date) "Linux man-pages (unreleased)" .SH NAME siginterrupt \- allow signals to interrupt system calls .SH LIBRARY diff --git a/man3/signbit.3 b/man3/signbit.3 index 2da0c29884..5f6e600f69 100644 --- a/man3/signbit.3 +++ b/man3/signbit.3 @@ -6,7 +6,7 @@ .\" .\" Based on glibc infopages, copyright Free Software Foundation .\" -.TH SIGNBIT 3 (date) "Linux man-pages (unreleased)" +.TH signbit 3 (date) "Linux man-pages (unreleased)" .SH NAME signbit \- test sign of a real floating-point number .SH LIBRARY diff --git a/man3/significand.3 b/man3/significand.3 index 7ccb3ee6a9..60c8a954ea 100644 --- a/man3/significand.3 +++ b/man3/significand.3 @@ -4,7 +4,7 @@ .\" .\" heavily based on glibc infopages, copyright Free Software Foundation .\" -.TH SIGNIFICAND 3 (date) "Linux man-pages (unreleased)" +.TH significand 3 (date) "Linux man-pages (unreleased)" .SH NAME significand, significandf, significandl \- get mantissa of floating-point number diff --git a/man3/sigpause.3 b/man3/sigpause.3 index 5acfe85361..9a192e0fd7 100644 --- a/man3/sigpause.3 +++ b/man3/sigpause.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SIGPAUSE 3 (date) "Linux man-pages (unreleased)" +.TH sigpause 3 (date) "Linux man-pages (unreleased)" .SH NAME sigpause \- atomically release blocked signals and wait for interrupt .SH LIBRARY diff --git a/man3/sigqueue.3 b/man3/sigqueue.3 index 0596743de3..81b0af0d8c 100644 --- a/man3/sigqueue.3 +++ b/man3/sigqueue.3 @@ -5,7 +5,7 @@ .\" added note on self-signaling, aeb, 2002-06-07 .\" added note on CAP_KILL, mtk, 2004-06-16 .\" -.TH SIGQUEUE 3 (date) "Linux man-pages (unreleased)" +.TH sigqueue 3 (date) "Linux man-pages (unreleased)" .SH NAME sigqueue \- queue a signal and data to a process .SH LIBRARY diff --git a/man3/sigset.3 b/man3/sigset.3 index e854990d94..83679c1368 100644 --- a/man3/sigset.3 +++ b/man3/sigset.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SIGSET 3 (date) "Linux man-pages (unreleased)" +.TH sigset 3 (date) "Linux man-pages (unreleased)" .SH NAME sigset, sighold, sigrelse, sigignore \- System V signal API .SH LIBRARY diff --git a/man3/sigvec.3 b/man3/sigvec.3 index 5855529ffe..39939e30bb 100644 --- a/man3/sigvec.3 +++ b/man3/sigvec.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SIGVEC 3 (date) "Linux man-pages (unreleased)" +.TH sigvec 3 (date) "Linux man-pages (unreleased)" .SH NAME sigvec, sigblock, sigsetmask, siggetmask, sigmask \- BSD signal API .SH LIBRARY diff --git a/man3/sigwait.3 b/man3/sigwait.3 index bf724add54..eef44d65b7 100644 --- a/man3/sigwait.3 +++ b/man3/sigwait.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SIGWAIT 3 (date) "Linux man-pages (unreleased)" +.TH sigwait 3 (date) "Linux man-pages (unreleased)" .SH NAME sigwait \- wait for a signal .SH LIBRARY diff --git a/man3/sin.3 b/man3/sin.3 index 356ed04cd5..e517376280 100644 --- a/man3/sin.3 +++ b/man3/sin.3 @@ -12,7 +12,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH SIN 3 (date) "Linux man-pages (unreleased)" +.TH sin 3 (date) "Linux man-pages (unreleased)" .SH NAME sin, sinf, sinl \- sine function .SH LIBRARY diff --git a/man3/sinh.3 b/man3/sinh.3 index b539480544..0c0b98eaa2 100644 --- a/man3/sinh.3 +++ b/man3/sinh.3 @@ -13,7 +13,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH SINH 3 (date) "Linux man-pages (unreleased)" +.TH sinh 3 (date) "Linux man-pages (unreleased)" .SH NAME sinh, sinhf, sinhl \- hyperbolic sine function .SH LIBRARY diff --git a/man3/sleep.3 b/man3/sleep.3 index 44ef790797..0fe5520f80 100644 --- a/man3/sleep.3 +++ b/man3/sleep.3 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" Modified Sat Jul 24 18:16:02 1993 by Rik Faith (faith@cs.unc.edu) -.TH SLEEP 3 (date) "Linux man-pages (unreleased)" +.TH sleep 3 (date) "Linux man-pages (unreleased)" .SH NAME sleep \- sleep for a specified number of seconds .SH LIBRARY diff --git a/man3/sockatmark.3 b/man3/sockatmark.3 index ef9bcea832..c6b8fd5c0c 100644 --- a/man3/sockatmark.3 +++ b/man3/sockatmark.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SOCKATMARK 3 (date) "Linux man-pages (unreleased)" +.TH sockatmark 3 (date) "Linux man-pages (unreleased)" .SH NAME sockatmark \- determine whether socket is at out-of-band mark .SH LIBRARY diff --git a/man3/sqrt.3 b/man3/sqrt.3 index a5ed053535..5e1285e4e4 100644 --- a/man3/sqrt.3 +++ b/man3/sqrt.3 @@ -11,7 +11,7 @@ .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu) .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) -.TH SQRT 3 (date) "Linux man-pages (unreleased)" +.TH sqrt 3 (date) "Linux man-pages (unreleased)" .SH NAME sqrt, sqrtf, sqrtl \- square root function .SH LIBRARY diff --git a/man3/statvfs.3 b/man3/statvfs.3 index 6d4bec2e01..a1790b2ac1 100644 --- a/man3/statvfs.3 +++ b/man3/statvfs.3 @@ -7,7 +7,7 @@ .\" .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH STATVFS 3 (date) "Linux man-pages (unreleased)" +.TH statvfs 3 (date) "Linux man-pages (unreleased)" .SH NAME statvfs, fstatvfs \- get filesystem statistics .SH LIBRARY diff --git a/man3/stdarg.3 b/man3/stdarg.3 index b05512860e..b8912964c8 100644 --- a/man3/stdarg.3 +++ b/man3/stdarg.3 @@ -12,7 +12,7 @@ .\" Converted for Linux, Mon Nov 29 15:11:11 1993, faith@cs.unc.edu .\" Additions, 2001-10-14, aeb .\" -.TH STDARG 3 (date) "Linux man-pages (unreleased)" +.TH stdarg 3 (date) "Linux man-pages (unreleased)" .SH NAME stdarg, va_start, va_arg, va_end, va_copy \- variable argument lists .SH LIBRARY diff --git a/man3/stdin.3 b/man3/stdin.3 index e0b3b825e5..caa65a40fd 100644 --- a/man3/stdin.3 +++ b/man3/stdin.3 @@ -10,7 +10,7 @@ .\" 2005-06-16 mtk, mentioned freopen() .\" 2007-12-08, mtk, Converted from mdoc to man macros .\" -.TH STDIN 3 (date) "Linux man-pages (unreleased)" +.TH stdin 3 (date) "Linux man-pages (unreleased)" .SH NAME stdin, stdout, stderr \- standard I/O streams .SH LIBRARY diff --git a/man3/stdio.3 b/man3/stdio.3 index 549023873e..a4bc37e696 100644 --- a/man3/stdio.3 +++ b/man3/stdio.3 @@ -8,7 +8,7 @@ .\" Converted for Linux, Mon Nov 29 16:07:22 1993, faith@cs.unc.edu .\" Modified, 2001-12-26, aeb .\" -.TH STDIO 3 (date) "Linux man-pages (unreleased)" +.TH stdio 3 (date) "Linux man-pages (unreleased)" .SH NAME stdio \- standard input/output library functions .SH LIBRARY diff --git a/man3/stpcpy.3 b/man3/stpcpy.3 index bb805df1ce..5770790fc2 100644 --- a/man3/stpcpy.3 +++ b/man3/stpcpy.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH STPCPY 3 (date) "Linux man-pages (unreleased)" +.TH stpcpy 3 (date) "Linux man-pages (unreleased)" .SH NAME stpcpy \- copy a string returning a pointer to its end .SH LIBRARY diff --git a/man3/stpncpy.3 b/man3/stpncpy.3 index 1cbea0fd3d..492f344ebb 100644 --- a/man3/stpncpy.3 +++ b/man3/stpncpy.3 @@ -6,7 +6,7 @@ .\" GNU glibc-2 source code and manual .\" .\" Corrected, aeb, 990824 -.TH STPNCPY 3 (date) "Linux man-pages (unreleased)" +.TH stpncpy 3 (date) "Linux man-pages (unreleased)" .SH NAME stpncpy \- copy a fixed-size string, returning a pointer to its end .SH LIBRARY diff --git a/man3/strcasecmp.3 b/man3/strcasecmp.3 index 635ac16036..9feb7e26fb 100644 --- a/man3/strcasecmp.3 +++ b/man3/strcasecmp.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 18:12:45 1993 by Rik Faith (faith@cs.unc.edu) -.TH STRCASECMP 3 (date) "Linux man-pages (unreleased)" +.TH strcasecmp 3 (date) "Linux man-pages (unreleased)" .SH NAME strcasecmp, strncasecmp \- compare two strings ignoring case .SH LIBRARY diff --git a/man3/strcat.3 b/man3/strcat.3 index 44e0ac3a80..a4655eacea 100644 --- a/man3/strcat.3 +++ b/man3/strcat.3 @@ -9,7 +9,7 @@ .\" Modified Sat Jul 24 18:11:47 1993 by Rik Faith (faith@cs.unc.edu) .\" 2007-06-15, Marc Boyer + mtk .\" Improve discussion of strncat(). -.TH STRCAT 3 (date) "Linux man-pages (unreleased)" +.TH strcat 3 (date) "Linux man-pages (unreleased)" .SH NAME strcat, strncat \- concatenate two strings .SH LIBRARY diff --git a/man3/strchr.3 b/man3/strchr.3 index 2760a90c8d..c099eebfd0 100644 --- a/man3/strchr.3 +++ b/man3/strchr.3 @@ -10,7 +10,7 @@ .\" 2006-05-19, Justin Pryzby .\" Document strchrnul(3). .\" -.TH STRCHR 3 (date) "Linux man-pages (unreleased)" +.TH strchr 3 (date) "Linux man-pages (unreleased)" .SH NAME strchr, strrchr, strchrnul \- locate character in string .SH LIBRARY diff --git a/man3/strcmp.3 b/man3/strcmp.3 index 4ab4803acf..824ab69e80 100644 --- a/man3/strcmp.3 +++ b/man3/strcmp.3 @@ -10,7 +10,7 @@ .\" Modified Sat Jul 24 18:08:52 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified 2001-08-31, aeb .\" -.TH STRCMP 3 (date) "Linux man-pages (unreleased)" +.TH strcmp 3 (date) "Linux man-pages (unreleased)" .SH NAME strcmp, strncmp \- compare two strings .SH LIBRARY diff --git a/man3/strcoll.3 b/man3/strcoll.3 index fde85ae783..f2fd487a8d 100644 --- a/man3/strcoll.3 +++ b/man3/strcoll.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sun Jul 25 10:40:44 1993 by Rik Faith (faith@cs.unc.edu) -.TH STRCOLL 3 (date) "Linux man-pages (unreleased)" +.TH strcoll 3 (date) "Linux man-pages (unreleased)" .SH NAME strcoll \- compare two strings using the current locale .SH LIBRARY diff --git a/man3/strcpy.3 b/man3/strcpy.3 index 930a2af9b2..4d8a430617 100644 --- a/man3/strcpy.3 +++ b/man3/strcpy.3 @@ -12,7 +12,7 @@ .\" 2007-06-15, Marc Boyer + mtk .\" Improve discussion of strncpy(). .\" -.TH STRCPY 3 (date) "Linux man-pages (unreleased)" +.TH strcpy 3 (date) "Linux man-pages (unreleased)" .SH NAME strcpy, strncpy \- copy a string .SH LIBRARY diff --git a/man3/strdup.3 b/man3/strdup.3 index ae81dcefca..85174f0855 100644 --- a/man3/strdup.3 +++ b/man3/strdup.3 @@ -8,7 +8,7 @@ .\" 386BSD man pages .\" Modified Sun Jul 25 10:41:34 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Wed Oct 17 01:12:26 2001 by John Levon -.TH STRDUP 3 (date) "Linux man-pages (unreleased)" +.TH strdup 3 (date) "Linux man-pages (unreleased)" .SH NAME strdup, strndup, strdupa, strndupa \- duplicate a string .SH LIBRARY diff --git a/man3/strerror.3 b/man3/strerror.3 index f199313edd..ad8973413d 100644 --- a/man3/strerror.3 +++ b/man3/strerror.3 @@ -16,7 +16,7 @@ .\" 2005-12-13, mtk, Substantial rewrite of strerror_r() description .\" Addition of extra material on portability and standards. .\" -.TH STRERROR 3 (date) "Linux man-pages (unreleased)" +.TH strerror 3 (date) "Linux man-pages (unreleased)" .SH NAME strerror, strerrorname_np, strerrordesc_np, strerror_r, strerror_l \- return string describing error number diff --git a/man3/strfmon.3 b/man3/strfmon.3 index 01331190d0..efc713a150 100644 --- a/man3/strfmon.3 +++ b/man3/strfmon.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH STRFMON 3 (date) "Linux man-pages (unreleased)" +.TH strfmon 3 (date) "Linux man-pages (unreleased)" .SH NAME strfmon, strfmon_l \- convert monetary value to a string .SH LIBRARY diff --git a/man3/strfromd.3 b/man3/strfromd.3 index a1d55459d6..3e0b19df43 100644 --- a/man3/strfromd.3 +++ b/man3/strfromd.3 @@ -9,7 +9,7 @@ .\" ISO/IEC TS 18661-1 technical specification. .\" snprintf and other man.3 pages. .\" -.TH STRFROMD 3 (date) "Linux man-pages (unreleased)" +.TH strfromd 3 (date) "Linux man-pages (unreleased)" .SH NAME strfromd, strfromf, strfroml \- convert a floating-point value into a string diff --git a/man3/strfry.3 b/man3/strfry.3 index 7d2c384e01..a5f1435f6f 100644 --- a/man3/strfry.3 +++ b/man3/strfry.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sun Jul 25 10:39:43 1993 by Rik Faith (faith@cs.unc.edu) -.TH STRFRY 3 (date) "Linux man-pages (unreleased)" +.TH strfry 3 (date) "Linux man-pages (unreleased)" .SH NAME strfry \- randomize a string .SH LIBRARY diff --git a/man3/strftime.3 b/man3/strftime.3 index 6b2181c2d9..027aa4a2e0 100644 --- a/man3/strftime.3 +++ b/man3/strftime.3 @@ -14,7 +14,7 @@ .\" 2005-11-22 mtk, added Glibc Notes covering optional 'flag' and .\" 'width' components of conversion specifications. .\" -.TH STRFTIME 3 (date) "Linux man-pages (unreleased)" +.TH strftime 3 (date) "Linux man-pages (unreleased)" .SH NAME strftime \- format date and time .SH LIBRARY diff --git a/man3/strlen.3 b/man3/strlen.3 index 2733afb71d..971fda5015 100644 --- a/man3/strlen.3 +++ b/man3/strlen.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 18:02:26 1993 by Rik Faith (faith@cs.unc.edu) -.TH STRLEN 3 (date) "Linux man-pages (unreleased)" +.TH strlen 3 (date) "Linux man-pages (unreleased)" .SH NAME strlen \- calculate the length of a string .SH LIBRARY diff --git a/man3/strnlen.3 b/man3/strnlen.3 index 036e033eb4..c400bc9ff8 100644 --- a/man3/strnlen.3 +++ b/man3/strnlen.3 @@ -5,7 +5,7 @@ .\" References consulted: .\" GNU glibc-2 source code and manual .\" -.TH STRNLEN 3 (date) "Linux man-pages (unreleased)" +.TH strnlen 3 (date) "Linux man-pages (unreleased)" .SH NAME strnlen \- determine the length of a fixed-size string .SH LIBRARY diff --git a/man3/strpbrk.3 b/man3/strpbrk.3 index 37743b0f69..41a1b7e0ef 100644 --- a/man3/strpbrk.3 +++ b/man3/strpbrk.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 18:01:24 1993 by Rik Faith (faith@cs.unc.edu) -.TH STRPBRK 3 (date) "Linux man-pages (unreleased)" +.TH strpbrk 3 (date) "Linux man-pages (unreleased)" .SH NAME strpbrk \- search a string for any of a set of bytes .SH LIBRARY diff --git a/man3/strptime.3 b/man3/strptime.3 index 94aa4415b7..d53b93ea30 100644 --- a/man3/strptime.3 +++ b/man3/strptime.3 @@ -8,7 +8,7 @@ .\" Modified, aeb, 2001-08-31 .\" Modified, wharms 2001-11-12, remark on white space and example .\" -.TH STRPTIME 3 (date) "Linux man-pages (unreleased)" +.TH strptime 3 (date) "Linux man-pages (unreleased)" .SH NAME strptime \- convert a string representation of time to a time tm structure .SH LIBRARY diff --git a/man3/strsep.3 b/man3/strsep.3 index da2dc5827f..a4bdb00ad6 100644 --- a/man3/strsep.3 +++ b/man3/strsep.3 @@ -10,7 +10,7 @@ .\" Modified Mon Jan 20 12:04:18 1997 by Andries Brouwer (aeb@cwi.nl) .\" Modified Tue Jan 23 20:23:07 2001 by Andries Brouwer (aeb@cwi.nl) .\" -.TH STRSEP 3 (date) "Linux man-pages (unreleased)" +.TH strsep 3 (date) "Linux man-pages (unreleased)" .SH NAME strsep \- extract token from string .SH LIBRARY diff --git a/man3/strsignal.3 b/man3/strsignal.3 index fb3c614fd4..f66ae86cd5 100644 --- a/man3/strsignal.3 +++ b/man3/strsignal.3 @@ -8,7 +8,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 17:59:03 1993 by Rik Faith (faith@cs.unc.edu) -.TH STRSIGNAL 3 (date) "Linux man-pages (unreleased)" +.TH strsignal 3 (date) "Linux man-pages (unreleased)" .SH NAME strsignal, sigabbrev_np, sigdescr_np, sys_siglist \- return string describing signal diff --git a/man3/strspn.3 b/man3/strspn.3 index bcd09da7d4..695fe22d57 100644 --- a/man3/strspn.3 +++ b/man3/strspn.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 17:57:50 1993 by Rik Faith (faith@cs.unc.edu) -.TH STRSPN 3 (date) "Linux man-pages (unreleased)" +.TH strspn 3 (date) "Linux man-pages (unreleased)" .SH NAME strspn, strcspn \- get length of a prefix substring .SH LIBRARY diff --git a/man3/strstr.3 b/man3/strstr.3 index 34c411e0f8..e2153423a2 100644 --- a/man3/strstr.3 +++ b/man3/strstr.3 @@ -10,7 +10,7 @@ .\" Added history, aeb, 980113. .\" 2005-05-05 mtk: added strcasestr() .\" -.TH STRSTR 3 (date) "Linux man-pages (unreleased)" +.TH strstr 3 (date) "Linux man-pages (unreleased)" .SH NAME strstr, strcasestr \- locate a substring .SH LIBRARY diff --git a/man3/strtod.3 b/man3/strtod.3 index 2eec5fb8dc..f1af13420e 100644 --- a/man3/strtod.3 +++ b/man3/strtod.3 @@ -14,7 +14,7 @@ .\" (michael@cantor.informatik.rwth-aachen.de) .\" Added strof, strtold, aeb, 2001-06-07 .\" -.TH STRTOD 3 (date) "Linux man-pages (unreleased)" +.TH strtod 3 (date) "Linux man-pages (unreleased)" .SH NAME strtod, strtof, strtold \- convert ASCII string to floating-point number .SH LIBRARY diff --git a/man3/strtoimax.3 b/man3/strtoimax.3 index dac91ee62a..17319a1a88 100644 --- a/man3/strtoimax.3 +++ b/man3/strtoimax.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH STRTOIMAX 3 (date) "Linux man-pages (unreleased)" +.TH strtoimax 3 (date) "Linux man-pages (unreleased)" .SH NAME strtoimax, strtoumax \- convert string to integer .SH LIBRARY diff --git a/man3/strtok.3 b/man3/strtok.3 index 08a66c4454..e8e9ce7a0a 100644 --- a/man3/strtok.3 +++ b/man3/strtok.3 @@ -9,7 +9,7 @@ .\" 2005-11-17, mtk: Substantial parts rewritten .\" 2013-05-19, mtk: added much further detail on the operation of strtok() .\" -.TH STRTOK 3 (date) "Linux man-pages (unreleased)" +.TH strtok 3 (date) "Linux man-pages (unreleased)" .SH NAME strtok, strtok_r \- extract tokens from strings .SH LIBRARY diff --git a/man3/strtol.3 b/man3/strtol.3 index 9571869d33..cb5578a2f4 100644 --- a/man3/strtol.3 +++ b/man3/strtol.3 @@ -9,7 +9,7 @@ .\" 386BSD man pages .\" Modified Sun Jul 25 10:53:39 1993 by Rik Faith (faith@cs.unc.edu) .\" Added correction due to nsd@bbc.com (Nick Duffek) - aeb, 950610 -.TH STRTOL 3 (date) "Linux man-pages (unreleased)" +.TH strtol 3 (date) "Linux man-pages (unreleased)" .SH NAME strtol, strtoll, strtoq \- convert a string to a long integer .SH LIBRARY diff --git a/man3/strtoul.3 b/man3/strtoul.3 index efe627f38d..13bf7604d4 100644 --- a/man3/strtoul.3 +++ b/man3/strtoul.3 @@ -10,7 +10,7 @@ .\" Fixed typo, aeb, 950823 .\" 2002-02-22, joey, mihtjel: Added strtoull() .\" -.TH STRTOUL 3 (date) "Linux man-pages (unreleased)" +.TH strtoul 3 (date) "Linux man-pages (unreleased)" .SH NAME strtoul, strtoull, strtouq \- convert a string to an unsigned long integer .SH LIBRARY diff --git a/man3/strverscmp.3 b/man3/strverscmp.3 index 8e940c159c..1f2d894798 100644 --- a/man3/strverscmp.3 +++ b/man3/strverscmp.3 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH STRVERSCMP 3 (date) "Linux man-pages (unreleased)" +.TH strverscmp 3 (date) "Linux man-pages (unreleased)" .SH NAME strverscmp \- compare two version strings .SH LIBRARY diff --git a/man3/strxfrm.3 b/man3/strxfrm.3 index 7ddd77ea71..a2bb9be8ae 100644 --- a/man3/strxfrm.3 +++ b/man3/strxfrm.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sun Jul 25 10:41:28 1993 by Rik Faith (faith@cs.unc.edu) -.TH STRXFRM 3 (date) "Linux man-pages (unreleased)" +.TH strxfrm 3 (date) "Linux man-pages (unreleased)" .SH NAME strxfrm \- string transformation .SH LIBRARY diff --git a/man3/swab.3 b/man3/swab.3 index af2aaf6ce3..06c6d9d291 100644 --- a/man3/swab.3 +++ b/man3/swab.3 @@ -8,7 +8,7 @@ .\" 386BSD man pages .\" Modified Sat Jul 24 17:52:15 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified 2001-12-15, aeb -.TH SWAB 3 (date) "Linux man-pages (unreleased)" +.TH swab 3 (date) "Linux man-pages (unreleased)" .SH NAME swab \- swap adjacent bytes .SH LIBRARY diff --git a/man3/sysconf.3 b/man3/sysconf.3 index afe1b48b28..0be30e7a82 100644 --- a/man3/sysconf.3 +++ b/man3/sysconf.3 @@ -4,7 +4,7 @@ .\" .\" Modified Sat Jul 24 17:51:42 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Tue Aug 17 11:42:20 1999 by Ariel Scolnicov (ariels@compugen.co.il) -.TH SYSCONF 3 (date) "Linux man-pages (unreleased)" +.TH sysconf 3 (date) "Linux man-pages (unreleased)" .SH NAME sysconf \- get configuration information at run time .SH LIBRARY diff --git a/man3/syslog.3 b/man3/syslog.3 index 736a5ba47b..a130e37fd3 100644 --- a/man3/syslog.3 +++ b/man3/syslog.3 @@ -14,7 +14,7 @@ .\" Modified 13 Dec 2001, Martin Schulze .\" Modified 3 Jan 2002, Michael Kerrisk .\" -.TH SYSLOG 3 (date) "Linux man-pages (unreleased)" +.TH syslog 3 (date) "Linux man-pages (unreleased)" .SH NAME closelog, openlog, syslog, vsyslog \- send messages to the system logger .SH LIBRARY diff --git a/man3/system.3 b/man3/system.3 index ca8de84ae7..463716f48b 100644 --- a/man3/system.3 +++ b/man3/system.3 @@ -8,7 +8,7 @@ .\" Modified 14 May 2001, 23 Sep 2001 by aeb .\" 2004-12-20, mtk .\" -.TH SYSTEM 3 (date) "Linux man-pages (unreleased)" +.TH system 3 (date) "Linux man-pages (unreleased)" .SH NAME system \- execute a shell command .SH LIBRARY diff --git a/man3/sysv_signal.3 b/man3/sysv_signal.3 index 03937831c5..362ca9b7a8 100644 --- a/man3/sysv_signal.3 +++ b/man3/sysv_signal.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SYSV_SIGNAL 3 (date) "Linux man-pages (unreleased)" +.TH sysv_signal 3 (date) "Linux man-pages (unreleased)" .SH NAME sysv_signal \- signal handling with System V semantics .SH LIBRARY diff --git a/man3/tan.3 b/man3/tan.3 index 814b670d4f..2b558dec52 100644 --- a/man3/tan.3 +++ b/man3/tan.3 @@ -12,7 +12,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH TAN 3 (date) "Linux man-pages (unreleased)" +.TH tan 3 (date) "Linux man-pages (unreleased)" .SH NAME tan, tanf, tanl \- tangent function .SH LIBRARY diff --git a/man3/tanh.3 b/man3/tanh.3 index 7e5852e7f5..661d519b47 100644 --- a/man3/tanh.3 +++ b/man3/tanh.3 @@ -12,7 +12,7 @@ .\" Modified 2002-07-27 by Walter Harms .\" (walter.harms@informatik.uni-oldenburg.de) .\" -.TH TANH 3 (date) "Linux man-pages (unreleased)" +.TH tanh 3 (date) "Linux man-pages (unreleased)" .SH NAME tanh, tanhf, tanhl \- hyperbolic tangent function .SH LIBRARY diff --git a/man3/tcgetpgrp.3 b/man3/tcgetpgrp.3 index 4df97566bc..302f824ae4 100644 --- a/man3/tcgetpgrp.3 +++ b/man3/tcgetpgrp.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH TCGETPGRP 3 (date) "Linux man-pages (unreleased)" +.TH tcgetpgrp 3 (date) "Linux man-pages (unreleased)" .SH NAME tcgetpgrp, tcsetpgrp \- get and set terminal foreground process group .SH LIBRARY diff --git a/man3/tcgetsid.3 b/man3/tcgetsid.3 index 96b11daa6c..f78e6ec7da 100644 --- a/man3/tcgetsid.3 +++ b/man3/tcgetsid.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH TCGETSID 3 (date) "Linux man-pages (unreleased)" +.TH tcgetsid 3 (date) "Linux man-pages (unreleased)" .SH NAME tcgetsid \- get session ID .SH LIBRARY diff --git a/man3/telldir.3 b/man3/telldir.3 index 1cadc3a56e..f953638ffd 100644 --- a/man3/telldir.3 +++ b/man3/telldir.3 @@ -7,7 +7,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 17:48:42 1993 by Rik Faith (faith@cs.unc.edu) -.TH TELLDIR 3 (date) "Linux man-pages (unreleased)" +.TH telldir 3 (date) "Linux man-pages (unreleased)" .SH NAME telldir \- return current location in directory stream .SH LIBRARY diff --git a/man3/tempnam.3 b/man3/tempnam.3 index 496cebc726..9d5714e772 100644 --- a/man3/tempnam.3 +++ b/man3/tempnam.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH TEMPNAM 3 (date) "Linux man-pages (unreleased)" +.TH tempnam 3 (date) "Linux man-pages (unreleased)" .SH NAME tempnam \- create a name for a temporary file .SH LIBRARY diff --git a/man3/termios.3 b/man3/termios.3 index 2b9e8c41da..4e49ac4e3f 100644 --- a/man3/termios.3 +++ b/man3/termios.3 @@ -18,7 +18,7 @@ .\" Enhanced the discussion of "raw" mode for cfmakeraw(). .\" Document CMSPAR. .\" -.TH TERMIOS 3 (date) "Linux man-pages (unreleased)" +.TH termios 3 (date) "Linux man-pages (unreleased)" .SH NAME termios, tcgetattr, tcsetattr, tcsendbreak, tcdrain, tcflush, tcflow, cfmakeraw, cfgetospeed, cfgetispeed, cfsetispeed, cfsetospeed, cfsetspeed \- diff --git a/man3/tgamma.3 b/man3/tgamma.3 index 12a2212921..1374bd0692 100644 --- a/man3/tgamma.3 +++ b/man3/tgamma.3 @@ -8,7 +8,7 @@ .\" Modified 2004-11-15, fixed error noted by Fabian Kreutz .\" .\" -.TH TGAMMA 3 (date) "Linux man-pages (unreleased)" +.TH tgamma 3 (date) "Linux man-pages (unreleased)" .SH NAME tgamma, tgammaf, tgammal \- true gamma function .SH LIBRARY diff --git a/man3/timegm.3 b/man3/timegm.3 index ea6fadaf3d..5235e35d98 100644 --- a/man3/timegm.3 +++ b/man3/timegm.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH TIMEGM 3 (date) "Linux man-pages (unreleased)" +.TH timegm 3 (date) "Linux man-pages (unreleased)" .SH NAME timegm, timelocal \- inverses of gmtime and localtime .SH LIBRARY diff --git a/man3/timeradd.3 b/man3/timeradd.3 index 7aabb285df..940eefcc89 100644 --- a/man3/timeradd.3 +++ b/man3/timeradd.3 @@ -4,7 +4,7 @@ .\" .\" 2007-07-31, mtk, Created .\" -.TH TIMERADD 3 (date) "Linux man-pages (unreleased)" +.TH timeradd 3 (date) "Linux man-pages (unreleased)" .SH NAME timeradd, timersub, timercmp, timerclear, timerisset \- timeval operations .SH LIBRARY diff --git a/man3/tmpfile.3 b/man3/tmpfile.3 index 9d5f26586b..3563cec963 100644 --- a/man3/tmpfile.3 +++ b/man3/tmpfile.3 @@ -8,7 +8,7 @@ .\" 386BSD man pages .\" Modified Sat Jul 24 17:46:57 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified 2001-11-17, aeb -.TH TMPFILE 3 (date) "Linux man-pages (unreleased)" +.TH tmpfile 3 (date) "Linux man-pages (unreleased)" .SH NAME tmpfile \- create a temporary file .SH LIBRARY diff --git a/man3/tmpnam.3 b/man3/tmpnam.3 index 650c5d3896..d327167057 100644 --- a/man3/tmpnam.3 +++ b/man3/tmpnam.3 @@ -4,7 +4,7 @@ .\" .\" 2003-11-15, aeb, added tmpnam_r .\" -.TH TMPNAM 3 (date) "Linux man-pages (unreleased)" +.TH tmpnam 3 (date) "Linux man-pages (unreleased)" .SH NAME tmpnam, tmpnam_r \- create a name for a temporary file .SH LIBRARY diff --git a/man3/toascii.3 b/man3/toascii.3 index 1a1fb5e3e6..01ac6799aa 100644 --- a/man3/toascii.3 +++ b/man3/toascii.3 @@ -4,7 +4,7 @@ .\" .\" Added BUGS section, aeb, 950919 .\" -.TH TOASCII 3 (date) "Linux man-pages (unreleased)" +.TH toascii 3 (date) "Linux man-pages (unreleased)" .SH NAME toascii \- convert character to ASCII .SH LIBRARY diff --git a/man3/toupper.3 b/man3/toupper.3 index 63df2a7c32..6082f05fac 100644 --- a/man3/toupper.3 +++ b/man3/toupper.3 @@ -5,7 +5,7 @@ .\" .\" Modified Sat Jul 24 17:45:39 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified 2000-02-13 by Nicolás Lichtmaier -.TH TOUPPER 3 (date) "Linux man-pages (unreleased)" +.TH toupper 3 (date) "Linux man-pages (unreleased)" .SH NAME toupper, tolower, toupper_l, tolower_l \- convert uppercase or lowercase .SH LIBRARY diff --git a/man3/towctrans.3 b/man3/towctrans.3 index 59bf36d0d2..3ea85830d7 100644 --- a/man3/towctrans.3 +++ b/man3/towctrans.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH TOWCTRANS 3 (date) "Linux man-pages (unreleased)" +.TH towctrans 3 (date) "Linux man-pages (unreleased)" .SH NAME towctrans \- wide-character transliteration .SH LIBRARY diff --git a/man3/towlower.3 b/man3/towlower.3 index 3ffada2667..33805577f5 100644 --- a/man3/towlower.3 +++ b/man3/towlower.3 @@ -9,7 +9,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH TOWLOWER 3 (date) "Linux man-pages (unreleased)" +.TH towlower 3 (date) "Linux man-pages (unreleased)" .SH NAME towlower, towlower_l \- convert a wide character to lowercase .SH LIBRARY diff --git a/man3/towupper.3 b/man3/towupper.3 index adde518b3e..1e0f15d751 100644 --- a/man3/towupper.3 +++ b/man3/towupper.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH TOWUPPER 3 (date) "Linux man-pages (unreleased)" +.TH towupper 3 (date) "Linux man-pages (unreleased)" .SH NAME towupper, towupper_l \- convert a wide character to uppercase .SH LIBRARY diff --git a/man3/trunc.3 b/man3/trunc.3 index 1c2e98658a..7a385671f8 100644 --- a/man3/trunc.3 +++ b/man3/trunc.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH TRUNC 3 (date) "Linux man-pages (unreleased)" +.TH trunc 3 (date) "Linux man-pages (unreleased)" .SH NAME trunc, truncf, truncl \- round to integer, toward zero .SH LIBRARY diff --git a/man3/tsearch.3 b/man3/tsearch.3 index ff367255a1..2012a55ece 100644 --- a/man3/tsearch.3 +++ b/man3/tsearch.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH TSEARCH 3 (date) "Linux man-pages (unreleased)" +.TH tsearch 3 (date) "Linux man-pages (unreleased)" .SH NAME tsearch, tfind, tdelete, twalk, twalk_r, tdestroy \- manage a binary search tree .SH LIBRARY diff --git a/man3/ttyname.3 b/man3/ttyname.3 index a40e60ba71..a01fe48411 100644 --- a/man3/ttyname.3 +++ b/man3/ttyname.3 @@ -5,7 +5,7 @@ .\" Modified 2001-12-13, Martin Schulze .\" Added ttyname_r, aeb, 2002-07-20 .\" -.TH TTYNAME 3 (date) "Linux man-pages (unreleased)" +.TH ttyname 3 (date) "Linux man-pages (unreleased)" .SH NAME ttyname, ttyname_r \- return name of a terminal .SH LIBRARY diff --git a/man3/ttyslot.3 b/man3/ttyslot.3 index 192c0760b5..0d2afd1578 100644 --- a/man3/ttyslot.3 +++ b/man3/ttyslot.3 @@ -5,7 +5,7 @@ .\" This replaces an earlier man page written by Walter Harms .\" . .\" -.TH TTYSLOT 3 (date) "Linux man-pages (unreleased)" +.TH ttyslot 3 (date) "Linux man-pages (unreleased)" .SH NAME ttyslot \- find the slot of the current user's terminal in some file .SH LIBRARY diff --git a/man3/tzset.3 b/man3/tzset.3 index cde966d4f8..a4930b3ff2 100644 --- a/man3/tzset.3 +++ b/man3/tzset.3 @@ -10,7 +10,7 @@ .\" Modified 2001-11-13, aeb .\" Modified 2004-12-01 mtk and Martin Schulze .\" -.TH TZSET 3 (date) "Linux man-pages (unreleased)" +.TH tzset 3 (date) "Linux man-pages (unreleased)" .SH NAME tzset, tzname, timezone, daylight \- initialize time conversion information .SH LIBRARY diff --git a/man3/ualarm.3 b/man3/ualarm.3 index 4d7a8ad819..3ce5ae5c2f 100644 --- a/man3/ualarm.3 +++ b/man3/ualarm.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH UALARM 3 (date) "Linux man-pages (unreleased)" +.TH ualarm 3 (date) "Linux man-pages (unreleased)" .SH NAME ualarm \- schedule signal after given number of microseconds .SH LIBRARY diff --git a/man3/ulimit.3 b/man3/ulimit.3 index 658c2c2642..5e0c0b6233 100644 --- a/man3/ulimit.3 +++ b/man3/ulimit.3 @@ -4,7 +4,7 @@ .\" .\" Moved to man3, aeb, 980612 .\" -.TH ULIMIT 3 (date) "Linux man-pages (unreleased)" +.TH ulimit 3 (date) "Linux man-pages (unreleased)" .SH NAME ulimit \- get and set user limits .SH LIBRARY diff --git a/man3/undocumented.3 b/man3/undocumented.3 index 3b8434d81f..bb025e8487 100644 --- a/man3/undocumented.3 +++ b/man3/undocumented.3 @@ -7,7 +7,7 @@ .\" 2004-10-31, aeb, changed maintainer address, updated list .\" 2015-04-20, william@tuffbizz.com, updated list .\" -.TH UNDOCUMENTED 3 (date) "Linux man-pages (unreleased)" +.TH undocumented 3 (date) "Linux man-pages (unreleased)" .SH NAME undocumented \- undocumented library functions .SH SYNOPSIS diff --git a/man3/ungetwc.3 b/man3/ungetwc.3 index 37a82522dd..f9763a8ba6 100644 --- a/man3/ungetwc.3 +++ b/man3/ungetwc.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH UNGETWC 3 (date) "Linux man-pages (unreleased)" +.TH ungetwc 3 (date) "Linux man-pages (unreleased)" .SH NAME ungetwc \- push back a wide character onto a FILE stream .SH LIBRARY diff --git a/man3/unlockpt.3 b/man3/unlockpt.3 index e797c31944..5fea52e3f1 100644 --- a/man3/unlockpt.3 +++ b/man3/unlockpt.3 @@ -2,7 +2,7 @@ .\" This page is in the public domain. - aeb .\" %%%LICENSE_END .\" -.TH UNLOCKPT 3 (date) "Linux man-pages (unreleased)" +.TH unlockpt 3 (date) "Linux man-pages (unreleased)" .SH NAME unlockpt \- unlock a pseudoterminal master/slave pair .SH LIBRARY diff --git a/man3/updwtmp.3 b/man3/updwtmp.3 index d55f44571b..e7690a23f4 100644 --- a/man3/updwtmp.3 +++ b/man3/updwtmp.3 @@ -7,7 +7,7 @@ .\" Added -lutil remark, 030718 .\" 2008-07-02, mtk, document updwtmpx() .\" -.TH UPDWTMP 3 (date) "Linux man-pages (unreleased)" +.TH updwtmp 3 (date) "Linux man-pages (unreleased)" .SH NAME updwtmp, logwtmp \- append an entry to the wtmp file .SH LIBRARY diff --git a/man3/uselocale.3 b/man3/uselocale.3 index 2f0d155630..3238954ffd 100644 --- a/man3/uselocale.3 +++ b/man3/uselocale.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH USELOCALE 3 (date) "Linux man-pages (unreleased)" +.TH uselocale 3 (date) "Linux man-pages (unreleased)" .SH NAME uselocale \- set/get the locale for the calling thread .SH LIBRARY diff --git a/man3/usleep.3 b/man3/usleep.3 index cc94bce957..ae8c7af439 100644 --- a/man3/usleep.3 +++ b/man3/usleep.3 @@ -10,7 +10,7 @@ .\" Modified 2001-04-01 by aeb .\" Modified 2003-07-23 by aeb .\" -.TH USLEEP 3 (date) "Linux man-pages (unreleased)" +.TH usleep 3 (date) "Linux man-pages (unreleased)" .SH NAME usleep \- suspend execution for microsecond intervals .SH LIBRARY diff --git a/man3/wcpcpy.3 b/man3/wcpcpy.3 index de68dbfee5..d0d1c68e21 100644 --- a/man3/wcpcpy.3 +++ b/man3/wcpcpy.3 @@ -7,7 +7,7 @@ .\" Dinkumware C library reference http://www.dinkumware.com/ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" -.TH WCPCPY 3 (date) "Linux man-pages (unreleased)" +.TH wcpcpy 3 (date) "Linux man-pages (unreleased)" .SH NAME wcpcpy \- copy a wide-character string, returning a pointer to its end .SH LIBRARY diff --git a/man3/wcpncpy.3 b/man3/wcpncpy.3 index ae094be583..54745c543b 100644 --- a/man3/wcpncpy.3 +++ b/man3/wcpncpy.3 @@ -7,7 +7,7 @@ .\" Dinkumware C library reference http://www.dinkumware.com/ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" -.TH WCPNCPY 3 (date) "Linux man-pages (unreleased)" +.TH wcpncpy 3 (date) "Linux man-pages (unreleased)" .SH NAME wcpncpy \- copy a fixed-size string of wide characters, returning a pointer to its end diff --git a/man3/wcrtomb.3 b/man3/wcrtomb.3 index 189ab6660f..48113cebb0 100644 --- a/man3/wcrtomb.3 +++ b/man3/wcrtomb.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCRTOMB 3 (date) "Linux man-pages (unreleased)" +.TH wcrtomb 3 (date) "Linux man-pages (unreleased)" .SH NAME wcrtomb \- convert a wide character to a multibyte sequence .SH LIBRARY diff --git a/man3/wcscasecmp.3 b/man3/wcscasecmp.3 index 4aa12036d3..4b1bfa445d 100644 --- a/man3/wcscasecmp.3 +++ b/man3/wcscasecmp.3 @@ -7,7 +7,7 @@ .\" Dinkumware C library reference http://www.dinkumware.com/ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" -.TH WCSCASECMP 3 (date) "Linux man-pages (unreleased)" +.TH wcscasecmp 3 (date) "Linux man-pages (unreleased)" .SH NAME wcscasecmp \- compare two wide-character strings, ignoring case .SH LIBRARY diff --git a/man3/wcscat.3 b/man3/wcscat.3 index 093714d3f1..7fc8c4237a 100644 --- a/man3/wcscat.3 +++ b/man3/wcscat.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSCAT 3 (date) "Linux man-pages (unreleased)" +.TH wcscat 3 (date) "Linux man-pages (unreleased)" .SH NAME wcscat \- concatenate two wide-character strings .SH LIBRARY diff --git a/man3/wcschr.3 b/man3/wcschr.3 index d320abff14..1495d6a098 100644 --- a/man3/wcschr.3 +++ b/man3/wcschr.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSCHR 3 (date) "Linux man-pages (unreleased)" +.TH wcschr 3 (date) "Linux man-pages (unreleased)" .SH NAME wcschr \- search a wide character in a wide-character string .SH LIBRARY diff --git a/man3/wcscmp.3 b/man3/wcscmp.3 index a50e800b24..7a7d6c5ba0 100644 --- a/man3/wcscmp.3 +++ b/man3/wcscmp.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSCMP 3 (date) "Linux man-pages (unreleased)" +.TH wcscmp 3 (date) "Linux man-pages (unreleased)" .SH NAME wcscmp \- compare two wide-character strings .SH LIBRARY diff --git a/man3/wcscpy.3 b/man3/wcscpy.3 index ed1ad05cba..03cdc3bbee 100644 --- a/man3/wcscpy.3 +++ b/man3/wcscpy.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSCPY 3 (date) "Linux man-pages (unreleased)" +.TH wcscpy 3 (date) "Linux man-pages (unreleased)" .SH NAME wcscpy \- copy a wide-character string .SH LIBRARY diff --git a/man3/wcscspn.3 b/man3/wcscspn.3 index bcf20da11a..858e99f28f 100644 --- a/man3/wcscspn.3 +++ b/man3/wcscspn.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSCSPN 3 (date) "Linux man-pages (unreleased)" +.TH wcscspn 3 (date) "Linux man-pages (unreleased)" .SH NAME wcscspn \- search a wide-character string for any of a set of wide characters .SH LIBRARY diff --git a/man3/wcsdup.3 b/man3/wcsdup.3 index d9637c7668..de8a58c620 100644 --- a/man3/wcsdup.3 +++ b/man3/wcsdup.3 @@ -7,7 +7,7 @@ .\" Dinkumware C library reference http://www.dinkumware.com/ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" -.TH WCSDUP 3 (date) "Linux man-pages (unreleased)" +.TH wcsdup 3 (date) "Linux man-pages (unreleased)" .SH NAME wcsdup \- duplicate a wide-character string .SH LIBRARY diff --git a/man3/wcslen.3 b/man3/wcslen.3 index f8bff7e6a2..a7de6297bf 100644 --- a/man3/wcslen.3 +++ b/man3/wcslen.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSLEN 3 (date) "Linux man-pages (unreleased)" +.TH wcslen 3 (date) "Linux man-pages (unreleased)" .SH NAME wcslen \- determine the length of a wide-character string .SH LIBRARY diff --git a/man3/wcsncasecmp.3 b/man3/wcsncasecmp.3 index aeb8e47925..ebb9c2c993 100644 --- a/man3/wcsncasecmp.3 +++ b/man3/wcsncasecmp.3 @@ -7,7 +7,7 @@ .\" Dinkumware C library reference http://www.dinkumware.com/ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" -.TH WCSNCASECMP 3 (date) "Linux man-pages (unreleased)" +.TH wcsncasecmp 3 (date) "Linux man-pages (unreleased)" .SH NAME wcsncasecmp \- compare two fixed-size wide-character strings, ignoring case .SH LIBRARY diff --git a/man3/wcsncat.3 b/man3/wcsncat.3 index 9b3dad2c9b..0b278c05d0 100644 --- a/man3/wcsncat.3 +++ b/man3/wcsncat.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSNCAT 3 (date) "Linux man-pages (unreleased)" +.TH wcsncat 3 (date) "Linux man-pages (unreleased)" .SH NAME wcsncat \- concatenate two wide-character strings .SH LIBRARY diff --git a/man3/wcsncmp.3 b/man3/wcsncmp.3 index ce4b6408e7..0fedd95299 100644 --- a/man3/wcsncmp.3 +++ b/man3/wcsncmp.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSNCMP 3 (date) "Linux man-pages (unreleased)" +.TH wcsncmp 3 (date) "Linux man-pages (unreleased)" .SH NAME wcsncmp \- compare two fixed-size wide-character strings .SH LIBRARY diff --git a/man3/wcsncpy.3 b/man3/wcsncpy.3 index 2489283570..eac21d5c80 100644 --- a/man3/wcsncpy.3 +++ b/man3/wcsncpy.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSNCPY 3 (date) "Linux man-pages (unreleased)" +.TH wcsncpy 3 (date) "Linux man-pages (unreleased)" .SH NAME wcsncpy \- copy a fixed-size string of wide characters .SH LIBRARY diff --git a/man3/wcsnlen.3 b/man3/wcsnlen.3 index 6352d3add2..a81f1cd9e3 100644 --- a/man3/wcsnlen.3 +++ b/man3/wcsnlen.3 @@ -7,7 +7,7 @@ .\" Dinkumware C library reference http://www.dinkumware.com/ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" -.TH WCSNLEN 3 (date) "Linux man-pages (unreleased)" +.TH wcsnlen 3 (date) "Linux man-pages (unreleased)" .SH NAME wcsnlen \- determine the length of a fixed-size wide-character string .SH LIBRARY diff --git a/man3/wcsnrtombs.3 b/man3/wcsnrtombs.3 index 12e2a9337c..e5728a9aaf 100644 --- a/man3/wcsnrtombs.3 +++ b/man3/wcsnrtombs.3 @@ -7,7 +7,7 @@ .\" Dinkumware C library reference http://www.dinkumware.com/ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" -.TH WCSNRTOMBS 3 (date) "Linux man-pages (unreleased)" +.TH wcsnrtombs 3 (date) "Linux man-pages (unreleased)" .SH NAME wcsnrtombs \- convert a wide-character string to a multibyte string .SH LIBRARY diff --git a/man3/wcspbrk.3 b/man3/wcspbrk.3 index 3ab19449e2..52807fb9b3 100644 --- a/man3/wcspbrk.3 +++ b/man3/wcspbrk.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSPBRK 3 (date) "Linux man-pages (unreleased)" +.TH wcspbrk 3 (date) "Linux man-pages (unreleased)" .SH NAME wcspbrk \- search a wide-character string for any of a set of wide characters .SH LIBRARY diff --git a/man3/wcsrchr.3 b/man3/wcsrchr.3 index 203750ef05..40885ffc89 100644 --- a/man3/wcsrchr.3 +++ b/man3/wcsrchr.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSRCHR 3 (date) "Linux man-pages (unreleased)" +.TH wcsrchr 3 (date) "Linux man-pages (unreleased)" .SH NAME wcsrchr \- search a wide character in a wide-character string .SH LIBRARY diff --git a/man3/wcsrtombs.3 b/man3/wcsrtombs.3 index 76b269c060..057feb7171 100644 --- a/man3/wcsrtombs.3 +++ b/man3/wcsrtombs.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSRTOMBS 3 (date) "Linux man-pages (unreleased)" +.TH wcsrtombs 3 (date) "Linux man-pages (unreleased)" .SH NAME wcsrtombs \- convert a wide-character string to a multibyte string .SH LIBRARY diff --git a/man3/wcsspn.3 b/man3/wcsspn.3 index 518da66d5a..51d7c579ba 100644 --- a/man3/wcsspn.3 +++ b/man3/wcsspn.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSSPN 3 (date) "Linux man-pages (unreleased)" +.TH wcsspn 3 (date) "Linux man-pages (unreleased)" .SH NAME wcsspn \- advance in a wide-character string, skipping any of a set of wide characters diff --git a/man3/wcsstr.3 b/man3/wcsstr.3 index 95e121e55a..4021f92c8a 100644 --- a/man3/wcsstr.3 +++ b/man3/wcsstr.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSSTR 3 (date) "Linux man-pages (unreleased)" +.TH wcsstr 3 (date) "Linux man-pages (unreleased)" .SH NAME wcsstr \- locate a substring in a wide-character string .SH LIBRARY diff --git a/man3/wcstoimax.3 b/man3/wcstoimax.3 index e4a49877f5..c34f780299 100644 --- a/man3/wcstoimax.3 +++ b/man3/wcstoimax.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH WCSTOIMAX 3 (date) "Linux man-pages (unreleased)" +.TH wcstoimax 3 (date) "Linux man-pages (unreleased)" .SH NAME wcstoimax, wcstoumax \- convert wide-character string to integer .SH LIBRARY diff --git a/man3/wcstok.3 b/man3/wcstok.3 index 6a4104d3d2..3c122c731e 100644 --- a/man3/wcstok.3 +++ b/man3/wcstok.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSTOK 3 (date) "Linux man-pages (unreleased)" +.TH wcstok 3 (date) "Linux man-pages (unreleased)" .SH NAME wcstok \- split wide-character string into tokens .SH LIBRARY diff --git a/man3/wcstombs.3 b/man3/wcstombs.3 index ef33936c8d..b20073df75 100644 --- a/man3/wcstombs.3 +++ b/man3/wcstombs.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSTOMBS 3 (date) "Linux man-pages (unreleased)" +.TH wcstombs 3 (date) "Linux man-pages (unreleased)" .SH NAME wcstombs \- convert a wide-character string to a multibyte string .SH LIBRARY diff --git a/man3/wcswidth.3 b/man3/wcswidth.3 index 7d91172fe5..998799a7c5 100644 --- a/man3/wcswidth.3 +++ b/man3/wcswidth.3 @@ -7,7 +7,7 @@ .\" Dinkumware C library reference http://www.dinkumware.com/ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" -.TH WCSWIDTH 3 (date) "Linux man-pages (unreleased)" +.TH wcswidth 3 (date) "Linux man-pages (unreleased)" .SH NAME wcswidth \- determine columns needed for a fixed-size wide-character string .SH LIBRARY diff --git a/man3/wctob.3 b/man3/wctob.3 index dc6ff0f26a..d60dcb52a2 100644 --- a/man3/wctob.3 +++ b/man3/wctob.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCTOB 3 (date) "Linux man-pages (unreleased)" +.TH wctob 3 (date) "Linux man-pages (unreleased)" .SH NAME wctob \- try to represent a wide character as a single byte .SH LIBRARY diff --git a/man3/wctomb.3 b/man3/wctomb.3 index 3735cfdda3..57a1a50fa7 100644 --- a/man3/wctomb.3 +++ b/man3/wctomb.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCTOMB 3 (date) "Linux man-pages (unreleased)" +.TH wctomb 3 (date) "Linux man-pages (unreleased)" .SH NAME wctomb \- convert a wide character to a multibyte sequence .SH LIBRARY diff --git a/man3/wctrans.3 b/man3/wctrans.3 index f475948992..de7263ca95 100644 --- a/man3/wctrans.3 +++ b/man3/wctrans.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCTRANS 3 (date) "Linux man-pages (unreleased)" +.TH wctrans 3 (date) "Linux man-pages (unreleased)" .SH NAME wctrans \- wide-character translation mapping .SH LIBRARY diff --git a/man3/wctype.3 b/man3/wctype.3 index fd8791bcc1..ede6432278 100644 --- a/man3/wctype.3 +++ b/man3/wctype.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCTYPE 3 (date) "Linux man-pages (unreleased)" +.TH wctype 3 (date) "Linux man-pages (unreleased)" .SH NAME wctype \- wide-character classification .SH LIBRARY diff --git a/man3/wcwidth.3 b/man3/wcwidth.3 index 4097c28736..0aa6c5cd5b 100644 --- a/man3/wcwidth.3 +++ b/man3/wcwidth.3 @@ -7,7 +7,7 @@ .\" Dinkumware C library reference http://www.dinkumware.com/ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" -.TH WCWIDTH 3 (date) "Linux man-pages (unreleased)" +.TH wcwidth 3 (date) "Linux man-pages (unreleased)" .SH NAME wcwidth \- determine columns needed for a wide character .SH LIBRARY diff --git a/man3/wmemchr.3 b/man3/wmemchr.3 index 962f0c222b..4ae1c26155 100644 --- a/man3/wmemchr.3 +++ b/man3/wmemchr.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WMEMCHR 3 (date) "Linux man-pages (unreleased)" +.TH wmemchr 3 (date) "Linux man-pages (unreleased)" .SH NAME wmemchr \- search a wide character in a wide-character array .SH LIBRARY diff --git a/man3/wmemcmp.3 b/man3/wmemcmp.3 index b88132762b..7ba38f0134 100644 --- a/man3/wmemcmp.3 +++ b/man3/wmemcmp.3 @@ -7,7 +7,7 @@ .\" Dinkumware C library reference http://www.dinkumware.com/ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" -.TH WMEMCMP 3 (date) "Linux man-pages (unreleased)" +.TH wmemcmp 3 (date) "Linux man-pages (unreleased)" .SH NAME wmemcmp \- compare two arrays of wide-characters .SH LIBRARY diff --git a/man3/wmemcpy.3 b/man3/wmemcpy.3 index 6697759b69..79170e60af 100644 --- a/man3/wmemcpy.3 +++ b/man3/wmemcpy.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WMEMCPY 3 (date) "Linux man-pages (unreleased)" +.TH wmemcpy 3 (date) "Linux man-pages (unreleased)" .SH NAME wmemcpy \- copy an array of wide-characters .SH LIBRARY diff --git a/man3/wmemmove.3 b/man3/wmemmove.3 index 56ee6f176b..fddcd534ed 100644 --- a/man3/wmemmove.3 +++ b/man3/wmemmove.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WMEMMOVE 3 (date) "Linux man-pages (unreleased)" +.TH wmemmove 3 (date) "Linux man-pages (unreleased)" .SH NAME wmemmove \- copy an array of wide-characters .SH LIBRARY diff --git a/man3/wmemset.3 b/man3/wmemset.3 index 88d690bb1e..46c3b8f7d9 100644 --- a/man3/wmemset.3 +++ b/man3/wmemset.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WMEMSET 3 (date) "Linux man-pages (unreleased)" +.TH wmemset 3 (date) "Linux man-pages (unreleased)" .SH NAME wmemset \- fill an array of wide-characters with a constant wide character .SH LIBRARY diff --git a/man3/wordexp.3 b/man3/wordexp.3 index 3f2dde909a..4eb4c4143c 100644 --- a/man3/wordexp.3 +++ b/man3/wordexp.3 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH WORDEXP 3 (date) "Linux man-pages (unreleased)" +.TH wordexp 3 (date) "Linux man-pages (unreleased)" .SH NAME wordexp, wordfree \- perform word expansion like a posix-shell .SH LIBRARY diff --git a/man3/wprintf.3 b/man3/wprintf.3 index 290649e9d0..afd9e64444 100644 --- a/man3/wprintf.3 +++ b/man3/wprintf.3 @@ -8,7 +8,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WPRINTF 3 (date) "Linux man-pages (unreleased)" +.TH wprintf 3 (date) "Linux man-pages (unreleased)" .SH NAME wprintf, fwprintf, swprintf, vwprintf, vfwprintf, vswprintf \- formatted wide-character output conversion diff --git a/man3/xdr.3 b/man3/xdr.3 index 27f6bf57d6..872c311522 100644 --- a/man3/xdr.3 +++ b/man3/xdr.3 @@ -8,7 +8,7 @@ .\" .\" 2007-12-30, mtk, Convert function prototypes to modern C syntax .\" -.TH XDR 3 (date) "Linux man-pages (unreleased)" +.TH xdr 3 (date) "Linux man-pages (unreleased)" .SH NAME xdr \- library routines for external data representation .SH LIBRARY diff --git a/man3/y0.3 b/man3/y0.3 index 329998af97..ddcd44229f 100644 --- a/man3/y0.3 +++ b/man3/y0.3 @@ -13,7 +13,7 @@ .\" Modified 2004-11-12 as per suggestion by Fabian Kreutz/AEB .\" 2008-07-24, mtk, created this page, based on material from j0.3. .\" -.TH Y0 3 (date) "Linux man-pages (unreleased)" +.TH y0 3 (date) "Linux man-pages (unreleased)" .SH NAME y0, y0f, y0l, y1, y1f, y1l, yn, ynf, ynl \- Bessel functions of the second kind diff --git a/man3type/aiocb.3type b/man3type/aiocb.3type index 7b4730d0b4..7bfe971625 100644 --- a/man3type/aiocb.3type +++ b/man3type/aiocb.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH AIOCB 3type (date) "Linux man-pages (unreleased)" +.TH aiocb 3type (date) "Linux man-pages (unreleased)" .SH NAME aiocb \- asynchronous I/O control block .SH LIBRARY diff --git a/man3type/blkcnt_t.3type b/man3type/blkcnt_t.3type index 5a20eeac8b..c9bb2ed403 100644 --- a/man3type/blkcnt_t.3type +++ b/man3type/blkcnt_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH BLKCNT_T 3type (date) "Linux man-pages (unreleased)" +.TH blkcnt_t 3type (date) "Linux man-pages (unreleased)" .SH NAME blkcnt_t \- file block counts .SH LIBRARY diff --git a/man3type/blksize_t.3type b/man3type/blksize_t.3type index 4032ce195d..0b1c82bcd4 100644 --- a/man3type/blksize_t.3type +++ b/man3type/blksize_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH BLKSIZE_T 3type (date) "Linux man-pages (unreleased)" +.TH blksize_t 3type (date) "Linux man-pages (unreleased)" .SH NAME blksize_t \- file block sizes .SH LIBRARY diff --git a/man3type/cc_t.3type b/man3type/cc_t.3type index 8908b4d417..ef0d441074 100644 --- a/man3type/cc_t.3type +++ b/man3type/cc_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH CC_T 3type (date) "Linux man-pages (unreleased)" +.TH cc_t 3type (date) "Linux man-pages (unreleased)" .SH NAME cc_t, speed_t, tcflag_t \- terminal special characters, baud rates, modes .SH LIBRARY diff --git a/man3type/clock_t.3type b/man3type/clock_t.3type index 6676bc56d8..b3fdf03468 100644 --- a/man3type/clock_t.3type +++ b/man3type/clock_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH CLOCK_T 3type (date) "Linux man-pages (unreleased)" +.TH clock_t 3type (date) "Linux man-pages (unreleased)" .SH NAME clock_t \- system time .SH LIBRARY diff --git a/man3type/clockid_t.3type b/man3type/clockid_t.3type index c5a3b5f111..092a07c153 100644 --- a/man3type/clockid_t.3type +++ b/man3type/clockid_t.3type @@ -1,4 +1,4 @@ -.TH CLOCKID_T 3type (date) "Linux man-pages (unreleased)" +.TH clockid_t 3type (date) "Linux man-pages (unreleased)" .SH NAME clockid_t \- clock ID for the clock and timer functions .SH LIBRARY diff --git a/man3type/dev_t.3type b/man3type/dev_t.3type index 62ca80bc92..898886b84a 100644 --- a/man3type/dev_t.3type +++ b/man3type/dev_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH DEV_T 3type (date) "Linux man-pages (unreleased)" +.TH dev_t 3type (date) "Linux man-pages (unreleased)" .SH NAME dev_t \- device ID .SH LIBRARY diff --git a/man3type/div_t.3type b/man3type/div_t.3type index 7e50cf21e5..fa43307091 100644 --- a/man3type/div_t.3type +++ b/man3type/div_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH DIV_T 3type (date) "Linux man-pages (unreleased)" +.TH div_t 3type (date) "Linux man-pages (unreleased)" .SH NAME div_t, ldiv_t, lldiv_t, imaxdiv_t \- quotient and remainder of an integer division diff --git a/man3type/double_t.3type b/man3type/double_t.3type index a3b07701f0..1ece47c895 100644 --- a/man3type/double_t.3type +++ b/man3type/double_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH DOUBLE_T 3type (date) "Linux man-pages (unreleased)" +.TH double_t 3type (date) "Linux man-pages (unreleased)" .SH NAME float_t, double_t \- most efficient floating types .SH LIBRARY diff --git a/man3type/epoll_event.3type b/man3type/epoll_event.3type index 40b3248733..4e4d342841 100644 --- a/man3type/epoll_event.3type +++ b/man3type/epoll_event.3type @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH EPOLL_EVENT 3type (date) "Linux man-pages (unreleased)" +.TH epoll_event 3type (date) "Linux man-pages (unreleased)" .SH NAME epoll_event, epoll_data, epoll_data_t \- epoll event diff --git a/man3type/fenv_t.3type b/man3type/fenv_t.3type index 38919dd889..086f1d977e 100644 --- a/man3type/fenv_t.3type +++ b/man3type/fenv_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH FENV_T 3type (date) "Linux man-pages (unreleased)" +.TH fenv_t 3type (date) "Linux man-pages (unreleased)" .SH NAME fenv_t, fexcept_t \- floating-point environment .SH LIBRARY diff --git a/man3type/id_t.3type b/man3type/id_t.3type index db88013453..d6bc97b6f4 100644 --- a/man3type/id_t.3type +++ b/man3type/id_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH ID_T 3type (date) "Linux man-pages (unreleased)" +.TH id_t 3type (date) "Linux man-pages (unreleased)" .SH NAME pid_t, uid_t, gid_t, id_t \- process/user/group identifier .SH LIBRARY diff --git a/man3type/intN_t.3type b/man3type/intN_t.3type index 6c5bc18eb5..ca30516ef2 100644 --- a/man3type/intN_t.3type +++ b/man3type/intN_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH INTN_T 3type (date) "Linux man-pages (unreleased)" +.TH intN_t 3type (date) "Linux man-pages (unreleased)" .SH NAME intN_t, int8_t, int16_t, int32_t, int64_t, uintN_t, uint8_t, uint16_t, uint32_t, uint64_t diff --git a/man3type/intmax_t.3type b/man3type/intmax_t.3type index e44c34df1d..8c2f9ff0f3 100644 --- a/man3type/intmax_t.3type +++ b/man3type/intmax_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH INTMAX_T 3type (date) "Linux man-pages (unreleased)" +.TH intmax_t 3type (date) "Linux man-pages (unreleased)" .SH NAME intmax_t, uintmax_t \- greatest-width basic integer types .SH LIBRARY diff --git a/man3type/intptr_t.3type b/man3type/intptr_t.3type index 4be2a1a886..9b614fac6b 100644 --- a/man3type/intptr_t.3type +++ b/man3type/intptr_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH INTPTR_T 3type (date) "Linux man-pages (unreleased)" +.TH intptr_t 3type (date) "Linux man-pages (unreleased)" .SH NAME intptr_t, uintptr_t \- integer types wide enough to hold pointers .SH LIBRARY diff --git a/man3type/iovec.3type b/man3type/iovec.3type index 13d6406d82..5f3a7e3ef9 100644 --- a/man3type/iovec.3type +++ b/man3type/iovec.3type @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH IOVEC 3type (date) "Linux man-pages (unreleased)" +.TH iovec 3type (date) "Linux man-pages (unreleased)" .SH NAME iovec \- Vector I/O data structure .SH LIBRARY diff --git a/man3type/lconv.3type b/man3type/lconv.3type index 8d6e029f96..d96ec91a15 100644 --- a/man3type/lconv.3type +++ b/man3type/lconv.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH LCONV 3type (date) "Linux man-pages (unreleased)" +.TH lconv 3type (date) "Linux man-pages (unreleased)" .SH NAME lconv \- numeric formatting information .SH LIBRARY diff --git a/man3type/mode_t.3type b/man3type/mode_t.3type index ebd557a727..2ea1784cc0 100644 --- a/man3type/mode_t.3type +++ b/man3type/mode_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH MODE_T 3type (date) "Linux man-pages (unreleased)" +.TH mode_t 3type (date) "Linux man-pages (unreleased)" .SH NAME mode_t \- file attributes .SH LIBRARY diff --git a/man3type/off_t.3type b/man3type/off_t.3type index f0256c157f..1e8734fa6f 100644 --- a/man3type/off_t.3type +++ b/man3type/off_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH OFF_T 3type (date) "Linux man-pages (unreleased)" +.TH off_t 3type (date) "Linux man-pages (unreleased)" .SH NAME off_t, off64_t, loff_t \- file sizes .SH LIBRARY diff --git a/man3type/ptrdiff_t.3type b/man3type/ptrdiff_t.3type index ef8fd02862..a4d41e5e77 100644 --- a/man3type/ptrdiff_t.3type +++ b/man3type/ptrdiff_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH PTRDIFF_T 3type (date) "Linux man-pages (unreleased)" +.TH ptrdiff_t 3type (date) "Linux man-pages (unreleased)" .SH NAME ptrdiff_t \- count of elements or array index .SH LIBRARY diff --git a/man3type/size_t.3type b/man3type/size_t.3type index 07f776f598..ba02993a2a 100644 --- a/man3type/size_t.3type +++ b/man3type/size_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH SIZE_T 3type (date) "Linux man-pages (unreleased)" +.TH size_t 3type (date) "Linux man-pages (unreleased)" .SH NAME size_t, ssize_t \- count of bytes .SH LIBRARY diff --git a/man3type/sockaddr.3type b/man3type/sockaddr.3type index 0f0f341655..319a5e5529 100644 --- a/man3type/sockaddr.3type +++ b/man3type/sockaddr.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH SOCKADDR 3type (date) "Linux man-pages (unreleased)" +.TH sockaddr 3type (date) "Linux man-pages (unreleased)" .SH NAME sockaddr, sockaddr_storage, sockaddr_in, sockaddr_in6, sockaddr_un, socklen_t, in_addr, in6_addr, in_addr_t, in_port_t, diff --git a/man3type/time_t.3type b/man3type/time_t.3type index df7d91df1f..0808236c9e 100644 --- a/man3type/time_t.3type +++ b/man3type/time_t.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH TIME_T 3type (date) "Linux man-pages (unreleased)" +.TH time_t 3type (date) "Linux man-pages (unreleased)" .SH NAME time_t, suseconds_t, useconds_t \- integer time .SH LIBRARY diff --git a/man3type/timespec.3type b/man3type/timespec.3type index 1509ee8a20..fdddcc778d 100644 --- a/man3type/timespec.3type +++ b/man3type/timespec.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH TIMESPEC 3type (date) "Linux man-pages (unreleased)" +.TH timespec 3type (date) "Linux man-pages (unreleased)" .SH NAME timespec \- time in seconds and nanoseconds .SH LIBRARY diff --git a/man3type/timeval.3type b/man3type/timeval.3type index cfb71bcd3c..36a7a4820f 100644 --- a/man3type/timeval.3type +++ b/man3type/timeval.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH TIMEVAL 3type (date) "Linux man-pages (unreleased)" +.TH timeval 3type (date) "Linux man-pages (unreleased)" .SH NAME timeval \- time in seconds and microseconds .SH LIBRARY diff --git a/man3type/tm.3type b/man3type/tm.3type index 15c373a586..6df7f78a0b 100644 --- a/man3type/tm.3type +++ b/man3type/tm.3type @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH TM 3type (date) "Linux man-pages (unreleased)" +.TH tm 3type (date) "Linux man-pages (unreleased)" .SH NAME tm \- broken-down time .SH LIBRARY diff --git a/man3type/va_list.3type b/man3type/va_list.3type index fe785e34d2..004860d5c5 100644 --- a/man3type/va_list.3type +++ b/man3type/va_list.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH VA_LIST 3type (date) "Linux man-pages (unreleased)" +.TH va_list 3type (date) "Linux man-pages (unreleased)" .SH NAME va_list \- variable argument list .SH LIBRARY diff --git a/man3type/void.3type b/man3type/void.3type index 567e7653f4..ddcbf482f1 100644 --- a/man3type/void.3type +++ b/man3type/void.3type @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH VOID 3type (date) "Linux man-pages (unreleased)" +.TH void 3type (date) "Linux man-pages (unreleased)" .SH NAME void \- abstract type .SH SYNOPSIS diff --git a/man4/cciss.4 b/man4/cciss.4 index 44ddc1c900..cfc57efc01 100644 --- a/man4/cciss.4 +++ b/man4/cciss.4 @@ -5,7 +5,7 @@ .\" .\" shorthand for double quote that works everywhere. .ds q \N'34' -.TH CCISS 4 (date) "Linux man-pages (unreleased)" +.TH cciss 4 (date) "Linux man-pages (unreleased)" .SH NAME cciss \- HP Smart Array block driver .SH SYNOPSIS diff --git a/man4/console_codes.4 b/man4/console_codes.4 index 2a8761d094..72e9787572 100644 --- a/man4/console_codes.4 +++ b/man4/console_codes.4 @@ -14,7 +14,7 @@ .\" .\" 2006-05-27, Several corrections - Thomas E. Dickey .\" -.TH CONSOLE_CODES 4 (date) "Linux man-pages (unreleased)" +.TH console_codes 4 (date) "Linux man-pages (unreleased)" .SH NAME console_codes \- Linux console escape and control sequences .SH DESCRIPTION diff --git a/man4/cpuid.4 b/man4/cpuid.4 index 27de856361..c89d270628 100644 --- a/man4/cpuid.4 +++ b/man4/cpuid.4 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH CPUID 4 (date) "Linux man-pages (unreleased)" +.TH cpuid 4 (date) "Linux man-pages (unreleased)" .SH NAME cpuid \- x86 CPUID access device .SH DESCRIPTION diff --git a/man4/dsp56k.4 b/man4/dsp56k.4 index 7aa324b7de..df8c67c5ff 100644 --- a/man4/dsp56k.4 +++ b/man4/dsp56k.4 @@ -4,7 +4,7 @@ .\" .\" Modified, Thu Jan 27 19:16:19 CET 2000, lars@nocrew.org .\" -.TH DSP56K 4 (date) "Linux man-pages (unreleased)" +.TH dsp56k 4 (date) "Linux man-pages (unreleased)" .SH NAME dsp56k \- DSP56001 interface device .SH SYNOPSIS diff --git a/man4/fd.4 b/man4/fd.4 index 1ffe833d2a..f744bbfe00 100644 --- a/man4/fd.4 +++ b/man4/fd.4 @@ -5,7 +5,7 @@ .\" .\" Modified, Sun Feb 26 15:00:02 1995, faith@cs.unc.edu .\" -.TH FD 4 (date) "Linux man-pages (unreleased)" +.TH fd 4 (date) "Linux man-pages (unreleased)" .SH NAME fd \- floppy disk device .SH CONFIGURATION diff --git a/man4/full.4 b/man4/full.4 index 16ad5ebcc3..e3c3de2153 100644 --- a/man4/full.4 +++ b/man4/full.4 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" correction, aeb, 970825 -.TH FULL 4 (date) "Linux man-pages (unreleased)" +.TH full 4 (date) "Linux man-pages (unreleased)" .SH NAME full \- always full device .SH CONFIGURATION diff --git a/man4/fuse.4 b/man4/fuse.4 index 2b5385cf5e..dc1ec8a85c 100644 --- a/man4/fuse.4 +++ b/man4/fuse.4 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH FUSE 4 (date) "Linux man-pages (unreleased)" +.TH fuse 4 (date) "Linux man-pages (unreleased)" .SH NAME fuse \- Filesystem in Userspace (FUSE) device .SH SYNOPSIS diff --git a/man4/hd.4 b/man4/hd.4 index 4f625b1d8c..fbbecbb9c4 100644 --- a/man4/hd.4 +++ b/man4/hd.4 @@ -7,7 +7,7 @@ .\" Modified Mon Oct 21 21:38:51 1996 by Eric S. Raymond .\" (and some more by aeb) .\" -.TH HD 4 (date) "Linux man-pages (unreleased)" +.TH hd 4 (date) "Linux man-pages (unreleased)" .SH NAME hd \- MFM/IDE hard disk devices .SH DESCRIPTION diff --git a/man4/hpsa.4 b/man4/hpsa.4 index ff652c6967..17a533c619 100644 --- a/man4/hpsa.4 +++ b/man4/hpsa.4 @@ -5,7 +5,7 @@ .\" .\" shorthand for double quote that works everywhere. .ds q \N'34' -.TH HPSA 4 (date) "Linux man-pages (unreleased)" +.TH hpsa 4 (date) "Linux man-pages (unreleased)" .SH NAME hpsa \- HP Smart Array SCSI driver .SH SYNOPSIS diff --git a/man4/initrd.4 b/man4/initrd.4 index b5132404d9..20d5618294 100644 --- a/man4/initrd.4 +++ b/man4/initrd.4 @@ -12,7 +12,7 @@ .\" phone: (302)654-5478 .\" .\" $Id: initrd.4,v 0.9 1997/11/07 05:05:32 kallal Exp kallal $ -.TH INITRD 4 (date) "Linux man-pages (unreleased)" +.TH initrd 4 (date) "Linux man-pages (unreleased)" .SH NAME initrd \- boot loader initialized RAM disk .SH CONFIGURATION diff --git a/man4/intro.4 b/man4/intro.4 index 262bd200d2..a12c38c2d5 100644 --- a/man4/intro.4 +++ b/man4/intro.4 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: GPL-2.0-or-later .\" .\" Modified Sat Jul 24 16:57:14 1993 by Rik Faith (faith@cs.unc.edu) -.TH INTRO 4 (date) "Linux man-pages (unreleased)" +.TH intro 4 (date) "Linux man-pages (unreleased)" .SH NAME intro \- introduction to special files .SH DESCRIPTION diff --git a/man4/lirc.4 b/man4/lirc.4 index d89994cd6d..30797a679f 100644 --- a/man4/lirc.4 +++ b/man4/lirc.4 @@ -2,7 +2,7 @@ .\" Copyright (c) 2018, Sean Young .\" .\" SPDX-License-Identifier: GPL-2.0-or-later -.TH LIRC 4 (date) "Linux man-pages (unreleased)" +.TH lirc 4 (date) "Linux man-pages (unreleased)" .SH NAME lirc \- lirc devices .SH DESCRIPTION diff --git a/man4/loop.4 b/man4/loop.4 index 671648c9bb..9002d67170 100644 --- a/man4/loop.4 +++ b/man4/loop.4 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH LOOP 4 (date) "Linux man-pages (unreleased)" +.TH loop 4 (date) "Linux man-pages (unreleased)" .SH NAME loop, loop-control \- loop devices .SH SYNOPSIS diff --git a/man4/lp.4 b/man4/lp.4 index edbef79f04..568bc37d47 100644 --- a/man4/lp.4 +++ b/man4/lp.4 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: GPL-2.0-or-later .\" .\" Modified, Sun Feb 26 15:02:58 1995, faith@cs.unc.edu -.TH LP 4 (date) "Linux man-pages (unreleased)" +.TH lp 4 (date) "Linux man-pages (unreleased)" .SH NAME lp \- line printer devices .SH SYNOPSIS diff --git a/man4/mem.4 b/man4/mem.4 index 3cd1aab6f4..333cef8009 100644 --- a/man4/mem.4 +++ b/man4/mem.4 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: GPL-2.0-or-later .\" .\" Modified Sat Jul 24 16:59:10 1993 by Rik Faith (faith@cs.unc.edu) -.TH MEM 4 (date) "Linux man-pages (unreleased)" +.TH mem 4 (date) "Linux man-pages (unreleased)" .SH NAME mem, kmem, port \- system memory, kernel memory and system ports .SH DESCRIPTION diff --git a/man4/mouse.4 b/man4/mouse.4 index 1a6621b05c..7651335781 100644 --- a/man4/mouse.4 +++ b/man4/mouse.4 @@ -2,7 +2,7 @@ .\" Updates Nov 1998, Andries Brouwer .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft -.TH MOUSE 4 (date) "Linux man-pages (unreleased)" +.TH mouse 4 (date) "Linux man-pages (unreleased)" .SH NAME mouse \- serial mouse interface .SH CONFIGURATION diff --git a/man4/msr.4 b/man4/msr.4 index c4b2d3bf37..a11a71cd02 100644 --- a/man4/msr.4 +++ b/man4/msr.4 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MSR 4 (date) "Linux man-pages (unreleased)" +.TH msr 4 (date) "Linux man-pages (unreleased)" .SH NAME msr \- x86 CPU MSR access device .SH DESCRIPTION diff --git a/man4/null.4 b/man4/null.4 index 7c7eb4403a..d8cb4feb0a 100644 --- a/man4/null.4 +++ b/man4/null.4 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: GPL-2.0-or-later .\" .\" Modified Sat Jul 24 17:00:12 1993 by Rik Faith (faith@cs.unc.edu) -.TH NULL 4 (date) "Linux man-pages (unreleased)" +.TH null 4 (date) "Linux man-pages (unreleased)" .SH NAME null, zero \- data sink .SH DESCRIPTION diff --git a/man4/pts.4 b/man4/pts.4 index 39446bba53..a021f039f3 100644 --- a/man4/pts.4 +++ b/man4/pts.4 @@ -5,7 +5,7 @@ .\" Redistribute and revise at will. .\" %%%LICENSE_END .\" -.TH PTS 4 (date) "Linux man-pages (unreleased)" +.TH pts 4 (date) "Linux man-pages (unreleased)" .SH NAME ptmx, pts \- pseudoterminal master and slave .SH DESCRIPTION diff --git a/man4/ram.4 b/man4/ram.4 index a0c42b8440..47161c505f 100644 --- a/man4/ram.4 +++ b/man4/ram.4 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: GPL-2.0-or-later .\" .\" Modified Sat Jul 24 17:01:11 1993 by Rik Faith (faith@cs.unc.edu) -.TH RAM 4 (date) "Linux man-pages (unreleased)" +.TH ram 4 (date) "Linux man-pages (unreleased)" .SH NAME ram \- ram disk device .SH DESCRIPTION diff --git a/man4/random.4 b/man4/random.4 index 7b5d2eee0d..12c859248d 100644 --- a/man4/random.4 +++ b/man4/random.4 @@ -9,7 +9,7 @@ .\" 2008-06-20, George Spelvin , .\" Matt Mackall .\" -.TH RANDOM 4 (date) "Linux man-pages (unreleased)" +.TH random 4 (date) "Linux man-pages (unreleased)" .SH NAME random, urandom \- kernel random number source devices .SH SYNOPSIS diff --git a/man4/rtc.4 b/man4/rtc.4 index e72c3e7b1e..769ff78045 100644 --- a/man4/rtc.4 +++ b/man4/rtc.4 @@ -8,7 +8,7 @@ .\" 2006-02-08 Various additions by mtk .\" 2006-11-26 cleanup, cover the generic rtc framework; David Brownell .\" -.TH RTC 4 (date) "Linux man-pages (unreleased)" +.TH rtc 4 (date) "Linux man-pages (unreleased)" .SH NAME rtc \- real-time clock .SH SYNOPSIS diff --git a/man4/sd.4 b/man4/sd.4 index 62580ebf71..691757e293 100644 --- a/man4/sd.4 +++ b/man4/sd.4 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SD 4 (date) "Linux man-pages (unreleased)" +.TH sd 4 (date) "Linux man-pages (unreleased)" .SH NAME sd \- driver for SCSI disk drives .SH SYNOPSIS diff --git a/man4/sk98lin.4 b/man4/sk98lin.4 index 5961caf68b..6801b9ea1e 100644 --- a/man4/sk98lin.4 +++ b/man4/sk98lin.4 @@ -5,7 +5,7 @@ .\" .\" This manpage can be viewed using `groff -Tascii -man sk98lin.4 | less` .\" -.TH SK98LIN 4 (date) "Linux man-pages (unreleased)" +.TH sk98lin 4 (date) "Linux man-pages (unreleased)" .SH NAME sk98lin \- Marvell/SysKonnect Gigabit Ethernet driver v6.21 .SH SYNOPSIS diff --git a/man4/smartpqi.4 b/man4/smartpqi.4 index 409bcaeb27..a74bc207cc 100644 --- a/man4/smartpqi.4 +++ b/man4/smartpqi.4 @@ -4,7 +4,7 @@ .\" Written by Kevin Barnett .\" .\" SPDX-License-Identifier: GPL-2.0-only -.TH SMARTPQI 4 (date) "Linux man-pages (unreleased)" +.TH smartpqi 4 (date) "Linux man-pages (unreleased)" .SH NAME smartpqi \- Microsemi Smart Family SCSI driver .SH SYNOPSIS diff --git a/man4/st.4 b/man4/st.4 index 4258b164c9..68ea2ff400 100644 --- a/man4/st.4 +++ b/man4/st.4 @@ -2,7 +2,7 @@ .\" Copyright 1999-2005 Kai Mäkisara (Kai.Makisara@kolumbus.fi) .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft -.TH ST 4 (date) "Linux man-pages (unreleased)" +.TH st 4 (date) "Linux man-pages (unreleased)" .SH NAME st \- SCSI tape device .SH SYNOPSIS diff --git a/man4/tty.4 b/man4/tty.4 index 2b6a2db96a..1398868447 100644 --- a/man4/tty.4 +++ b/man4/tty.4 @@ -6,7 +6,7 @@ .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu) .\" Modified 2003-04-07 by Michael Kerrisk .\" -.TH TTY 4 (date) "Linux man-pages (unreleased)" +.TH tty 4 (date) "Linux man-pages (unreleased)" .SH NAME tty \- controlling terminal .SH DESCRIPTION diff --git a/man4/ttyS.4 b/man4/ttyS.4 index e2bb97baec..e5e47a66bb 100644 --- a/man4/ttyS.4 +++ b/man4/ttyS.4 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: GPL-2.0-or-later .\" .\" Modified Sat Jul 24 17:03:24 1993 by Rik Faith (faith@cs.unc.edu) -.TH TTYS 4 (date) "Linux man-pages (unreleased)" +.TH ttyS 4 (date) "Linux man-pages (unreleased)" .SH NAME ttyS \- serial terminal lines .SH DESCRIPTION diff --git a/man4/vcs.4 b/man4/vcs.4 index 675faad8f5..9bda05d746 100644 --- a/man4/vcs.4 +++ b/man4/vcs.4 @@ -7,7 +7,7 @@ .\" 2007-12-17, Samuel Thibault : .\" document the VT_GETHIFONTMASK ioctl .\" " -.TH VCS 4 (date) "Linux man-pages (unreleased)" +.TH vcs 4 (date) "Linux man-pages (unreleased)" .SH NAME vcs, vcsa \- virtual console memory .SH DESCRIPTION diff --git a/man4/veth.4 b/man4/veth.4 index c85dd6cedb..254ad32e8a 100644 --- a/man4/veth.4 +++ b/man4/veth.4 @@ -5,7 +5,7 @@ .\" SPDX-License-Identifier: GPL-2.0-or-later .\" .\" -.TH VETH 4 (date) "Linux man-pages (unreleased)" +.TH veth 4 (date) "Linux man-pages (unreleased)" .SH NAME veth \- Virtual Ethernet Device .SH DESCRIPTION diff --git a/man4/wavelan.4 b/man4/wavelan.4 index 41822a4a59..45ac95f464 100644 --- a/man4/wavelan.4 +++ b/man4/wavelan.4 @@ -8,7 +8,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH WAVELAN 4 (date) "Linux man-pages (unreleased)" +.TH wavelan 4 (date) "Linux man-pages (unreleased)" .SH NAME wavelan \- AT&T GIS WaveLAN ISA device driver .SH SYNOPSIS diff --git a/man5/acct.5 b/man5/acct.5 index 774fd1ffc5..e62c6d15df 100644 --- a/man5/acct.5 +++ b/man5/acct.5 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH ACCT 5 (date) "Linux man-pages (unreleased)" +.TH acct 5 (date) "Linux man-pages (unreleased)" .SH NAME acct \- process accounting file .SH SYNOPSIS diff --git a/man5/charmap.5 b/man5/charmap.5 index e9043dcc3f..c4e02aad71 100644 --- a/man5/charmap.5 +++ b/man5/charmap.5 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH CHARMAP 5 (date) "Linux man-pages (unreleased)" +.TH charmap 5 (date) "Linux man-pages (unreleased)" .SH NAME charmap \- character set description file .SH DESCRIPTION diff --git a/man5/core.5 b/man5/core.5 index 2f07107f56..92aa18fe7d 100644 --- a/man5/core.5 +++ b/man5/core.5 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH CORE 5 (date) "Linux man-pages (unreleased)" +.TH core 5 (date) "Linux man-pages (unreleased)" .SH NAME core \- core dump file .SH DESCRIPTION diff --git a/man5/dir_colors.5 b/man5/dir_colors.5 index 63a454720e..c67e1305d4 100644 --- a/man5/dir_colors.5 +++ b/man5/dir_colors.5 @@ -9,7 +9,7 @@ .\" .\" Modified Sat Dec 22 22:25:33 2001 by Martin Schulze .\" -.TH DIR_COLORS 5 (date) "Linux man-pages (unreleased)" +.TH dir_colors 5 (date) "Linux man-pages (unreleased)" .SH NAME dir_colors \- configuration file for dircolors(1) .SH DESCRIPTION diff --git a/man5/filesystems.5 b/man5/filesystems.5 index 9c7bf918e0..bcff0663b3 100644 --- a/man5/filesystems.5 +++ b/man5/filesystems.5 @@ -4,7 +4,7 @@ .\" .\" 2007-12-14 mtk Added Reiserfs, XFS, JFS. .\" -.TH FILESYSTEMS 5 (date) "Linux man-pages (unreleased)" +.TH filesystems 5 (date) "Linux man-pages (unreleased)" .nh .SH NAME filesystems \- Linux filesystem types: ext, ext2, ext3, ext4, hpfs, iso9660, diff --git a/man5/ftpusers.5 b/man5/ftpusers.5 index 50ba1c5126..214a5f99da 100644 --- a/man5/ftpusers.5 +++ b/man5/ftpusers.5 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH FTPUSERS 5 (date) "Linux man-pages (unreleased)" +.TH ftpusers 5 (date) "Linux man-pages (unreleased)" .SH NAME ftpusers \- list of users that may not log in via the FTP daemon .SH DESCRIPTION diff --git a/man5/gai.conf.5 b/man5/gai.conf.5 index 2fc1bcc98a..7ecc823a4c 100644 --- a/man5/gai.conf.5 +++ b/man5/gai.conf.5 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-only .\" -.TH GAI.CONF 5 (date) "Linux man-pages (unreleased)" +.TH gai.conf 5 (date) "Linux man-pages (unreleased)" .SH NAME gai.conf \- getaddrinfo(3) configuration file .SH DESCRIPTION diff --git a/man5/group.5 b/man5/group.5 index bc3dd63878..3a8dcf131d 100644 --- a/man5/group.5 +++ b/man5/group.5 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: GPL-2.0-or-later .\" .\" Modified Sat Jul 24 17:06:03 1993 by Rik Faith (faith@cs.unc.edu) -.TH GROUP 5 (date) "Linux man-pages (unreleased)" +.TH group 5 (date) "Linux man-pages (unreleased)" .SH NAME group \- user group file .SH DESCRIPTION diff --git a/man5/host.conf.5 b/man5/host.conf.5 index f3c759ffff..9f09a8573c 100644 --- a/man5/host.conf.5 +++ b/man5/host.conf.5 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: GPL-2.0-or-later .\" .\" 2003-08-23 Martin Schulze Updated according to glibc 2.3.2 -.TH HOST.CONF 5 (date) "Linux man-pages (unreleased)" +.TH host.conf 5 (date) "Linux man-pages (unreleased)" .SH NAME host.conf \- resolver configuration file .SH DESCRIPTION diff --git a/man5/hosts.5 b/man5/hosts.5 index 84f619eb09..6436c781f2 100644 --- a/man5/hosts.5 +++ b/man5/hosts.5 @@ -5,7 +5,7 @@ .\" Minor polishing, aeb .\" Modified, 2002-06-16, Mike Coleman .\" -.TH HOSTS 5 (date) "Linux man-pages (unreleased)" +.TH hosts 5 (date) "Linux man-pages (unreleased)" .SH NAME hosts \- static table lookup for hostnames .SH SYNOPSIS diff --git a/man5/hosts.equiv.5 b/man5/hosts.equiv.5 index 8450dca9fc..6ca1d674a0 100644 --- a/man5/hosts.equiv.5 +++ b/man5/hosts.equiv.5 @@ -1,7 +1,7 @@ .\" Copyright (c) 1995 Peter Tobias .\" .\" SPDX-License-Identifier: GPL-1.0-or-later -.TH HOSTS.EQUIV 5 (date) "Linux man-pages (unreleased)" +.TH hosts.equiv 5 (date) "Linux man-pages (unreleased)" .SH NAME hosts.equiv \- list of hosts and users that are granted "trusted" .B r diff --git a/man5/intro.5 b/man5/intro.5 index 08686c4b95..cc78ff8ad9 100644 --- a/man5/intro.5 +++ b/man5/intro.5 @@ -5,7 +5,7 @@ .\" .\" Modified Sat Jul 24 17:06:52 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Sun Jan 14 00:34:09 1996 by Andries Brouwer (aeb@cwi.nl) -.TH INTRO 5 (date) "Linux man-pages (unreleased)" +.TH intro 5 (date) "Linux man-pages (unreleased)" .SH NAME intro \- introduction to file formats and filesystems .SH DESCRIPTION diff --git a/man5/issue.5 b/man5/issue.5 index d76ad1712d..13d2b83b36 100644 --- a/man5/issue.5 +++ b/man5/issue.5 @@ -5,7 +5,7 @@ .\" .\" Modified Sun Jul 25 11:06:22 1993 by Rik Faith .\" Modified Mon Oct 21 17:47:19 EDT 1996 by Eric S. Raymond -.TH ISSUE 5 (date) "Linux man-pages (unreleased)" +.TH issue 5 (date) "Linux man-pages (unreleased)" .SH NAME issue \- prelogin message and identification file .SH DESCRIPTION diff --git a/man5/locale.5 b/man5/locale.5 index 9ba120e450..be54d86595 100644 --- a/man5/locale.5 +++ b/man5/locale.5 @@ -7,7 +7,7 @@ .\" 2008-06-17 Petr Baudis .\" LC_TIME: Describe first_weekday and first_workday .\" -.TH LOCALE 5 (date) "Linux man-pages (unreleased)" +.TH locale 5 (date) "Linux man-pages (unreleased)" .SH NAME locale \- describes a locale definition file .SH DESCRIPTION diff --git a/man5/motd.5 b/man5/motd.5 index 61b5542747..fe14047318 100644 --- a/man5/motd.5 +++ b/man5/motd.5 @@ -5,7 +5,7 @@ .\" .\" Modified Sat Jul 24 17:08:16 1993 by Rik Faith .\" Modified Mon Oct 21 17:47:19 EDT 1996 by Eric S. Raymond -.TH MOTD 5 (date) "Linux man-pages (unreleased)" +.TH motd 5 (date) "Linux man-pages (unreleased)" .SH NAME motd \- message of the day .SH DESCRIPTION diff --git a/man5/networks.5 b/man5/networks.5 index dcb50924a7..43d1cfdc38 100644 --- a/man5/networks.5 +++ b/man5/networks.5 @@ -4,7 +4,7 @@ .\" .\" 2008-09-04, mtk, taken from Debian downstream, with a few light edits .\" -.TH NETWORKS 5 (date) "Linux man-pages (unreleased)" +.TH networks 5 (date) "Linux man-pages (unreleased)" .SH NAME networks \- network name information .SH DESCRIPTION diff --git a/man5/nologin.5 b/man5/nologin.5 index f2e7ac455e..d740bf83dc 100644 --- a/man5/nologin.5 +++ b/man5/nologin.5 @@ -5,7 +5,7 @@ .\" .\" Modified Sun Jul 25 11:06:34 1993 by Rik Faith (faith@cs.unc.edu) .\" Corrected Mon Oct 21 17:47:19 EDT 1996 by Eric S. Raymond (esr@thyrsus.com) -.TH NOLOGIN 5 (date) "Linux man-pages (unreleased)" +.TH nologin 5 (date) "Linux man-pages (unreleased)" .SH NAME nologin \- prevent unprivileged users from logging into the system .SH DESCRIPTION diff --git a/man5/nscd.conf.5 b/man5/nscd.conf.5 index 10208f8e3b..c660db2ff0 100644 --- a/man5/nscd.conf.5 +++ b/man5/nscd.conf.5 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH NSCD.CONF 5 (date) "Linux man-pages (unreleased)" +.TH nscd.conf 5 (date) "Linux man-pages (unreleased)" .SH NAME nscd.conf \- name service cache daemon configuration file .SH DESCRIPTION diff --git a/man5/nss.5 b/man5/nss.5 index abaee94f31..d959e3d04d 100644 --- a/man5/nss.5 +++ b/man5/nss.5 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-only .\" -.TH NSS 5 (date) "Linux man-pages (unreleased)" +.TH nss 5 (date) "Linux man-pages (unreleased)" .SH NAME nss \- Name Service Switch configuration file .SH DESCRIPTION diff --git a/man5/protocols.5 b/man5/protocols.5 index 444202da22..4033ae7dc8 100644 --- a/man5/protocols.5 +++ b/man5/protocols.5 @@ -7,7 +7,7 @@ .\" 2002-09-22 Seth W. Klein .\" * protocol numbers are now assigned by the IANA .\" -.TH PROTOCOLS 5 (date) "Linux man-pages (unreleased)" +.TH protocols 5 (date) "Linux man-pages (unreleased)" .SH NAME protocols \- protocols definition file .SH DESCRIPTION diff --git a/man5/repertoiremap.5 b/man5/repertoiremap.5 index 05aaaa1722..927cc12040 100644 --- a/man5/repertoiremap.5 +++ b/man5/repertoiremap.5 @@ -1,6 +1,6 @@ .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH REPERTOIREMAP 5 (date) "Linux man-pages (unreleased)" +.TH repertoiremap 5 (date) "Linux man-pages (unreleased)" .SH NAME repertoiremap \- map symbolic character names to Unicode code points .SH DESCRIPTION diff --git a/man5/resolv.conf.5 b/man5/resolv.conf.5 index 640fde2d83..b44d92f2dc 100644 --- a/man5/resolv.conf.5 +++ b/man5/resolv.conf.5 @@ -20,7 +20,7 @@ .\" .\" Added ndots remark by Bernhard R. Link - debian bug #182886 .\" -.TH RESOLV.CONF 5 (date) "Linux man-pages (unreleased)" +.TH resolv.conf 5 (date) "Linux man-pages (unreleased)" .UC 4 .SH NAME resolv.conf \- resolver configuration file diff --git a/man5/rpc.5 b/man5/rpc.5 index 8d7418fc18..4f919c1b73 100644 --- a/man5/rpc.5 +++ b/man5/rpc.5 @@ -5,7 +5,7 @@ .\" %%%LICENSE_END .\" .\" @(#)rpc.5 2.2 88/08/03 4.0 RPCSRC; from 1.4 87/11/27 SMI; -.TH RPC 5 (date) "Linux man-pages (unreleased)" +.TH rpc 5 (date) "Linux man-pages (unreleased)" .SH NAME rpc \- RPC program number data base .SH SYNOPSIS diff --git a/man5/securetty.5 b/man5/securetty.5 index f8813c79b9..a275fcde60 100644 --- a/man5/securetty.5 +++ b/man5/securetty.5 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: GPL-2.0-or-later .\" .\" Modified Sun Jul 25 11:06:27 1993 by Rik Faith (faith@cs.unc.edu) -.TH SECURETTY 5 (date) "Linux man-pages (unreleased)" +.TH securetty 5 (date) "Linux man-pages (unreleased)" .SH NAME securetty \- list of terminals on which root is allowed to login .SH DESCRIPTION diff --git a/man5/services.5 b/man5/services.5 index 462441ccb7..dd0bf3872f 100644 --- a/man5/services.5 +++ b/man5/services.5 @@ -11,7 +11,7 @@ .\" Thu Jan 11 12:14:41 1996 Austin Donnelly .\" * Merged two services(5) manpages .\" -.TH SERVICES 5 (date) "Linux man-pages (unreleased)" +.TH services 5 (date) "Linux man-pages (unreleased)" .SH NAME services \- Internet network services list .SH DESCRIPTION diff --git a/man5/shells.5 b/man5/shells.5 index f3c273c22b..17e35c7ed5 100644 --- a/man5/shells.5 +++ b/man5/shells.5 @@ -6,7 +6,7 @@ .\" Modified Sat Jul 24 17:11:07 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Sun Nov 21 10:49:38 1993 by Michael Haardt .\" Modified Sun Feb 26 15:09:15 1995 by Rik Faith (faith@cs.unc.edu) -.TH SHELLS 5 (date) "Linux man-pages (unreleased)" +.TH shells 5 (date) "Linux man-pages (unreleased)" .SH NAME shells \- pathnames of valid login shells .SH DESCRIPTION diff --git a/man5/slabinfo.5 b/man5/slabinfo.5 index e8cfac73aa..a84014c2f8 100644 --- a/man5/slabinfo.5 +++ b/man5/slabinfo.5 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SLABINFO 5 (date) "Linux man-pages (unreleased)" +.TH slabinfo 5 (date) "Linux man-pages (unreleased)" .SH NAME slabinfo \- kernel slab allocator statistics .SH SYNOPSIS diff --git a/man5/sysfs.5 b/man5/sysfs.5 index 4b0c494d2d..930c9714b2 100644 --- a/man5/sysfs.5 +++ b/man5/sysfs.5 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SYSFS 5 (date) "Linux man-pages (unreleased)" +.TH sysfs 5 (date) "Linux man-pages (unreleased)" .SH NAME sysfs \- a filesystem for exporting kernel objects .SH DESCRIPTION diff --git a/man5/termcap.5 b/man5/termcap.5 index ec112e3038..bdbc229b77 100644 --- a/man5/termcap.5 +++ b/man5/termcap.5 @@ -9,7 +9,7 @@ .\" If mistakes in the capabilities are found, please send a bug report to: .\" michael@moria.de .\" Modified Mon Oct 21 17:47:19 EDT 1996 by Eric S. Raymond (esr@thyrsus.com) -.TH TERMCAP 5 (date) "Linux man-pages (unreleased)" +.TH termcap 5 (date) "Linux man-pages (unreleased)" .SH NAME termcap \- terminal capability database .SH DESCRIPTION diff --git a/man5/tmpfs.5 b/man5/tmpfs.5 index f914a19120..f7bf5a6025 100644 --- a/man5/tmpfs.5 +++ b/man5/tmpfs.5 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH TMPFS 5 (date) "Linux man-pages (unreleased)" +.TH tmpfs 5 (date) "Linux man-pages (unreleased)" .SH NAME tmpfs \- a virtual memory filesystem .SH DESCRIPTION diff --git a/man5/ttytype.5 b/man5/ttytype.5 index 200bcbf9ff..f08aa5c7ac 100644 --- a/man5/ttytype.5 +++ b/man5/ttytype.5 @@ -7,7 +7,7 @@ .\" Modified Thu Oct 19 21:25:21 MET 1995 by Martin Schulze .\" Modified Mon Oct 21 17:47:19 EDT 1996 by Eric S. Raymond .\" xk -.TH TTYTYPE 5 (date) "Linux man-pages (unreleased)" +.TH ttytype 5 (date) "Linux man-pages (unreleased)" .SH NAME ttytype \- terminal device to default terminal type mapping .SH DESCRIPTION diff --git a/man5/tzfile.5 b/man5/tzfile.5 index 2fb764e4cc..7d9f736523 100644 --- a/man5/tzfile.5 +++ b/man5/tzfile.5 @@ -3,7 +3,7 @@ .\" 1996-06-05 by Arthur David Olson . .\" %%%LICENSE_END .\" -.TH TZFILE 5 2022-09-09 Linux "Linux Programmer's Manual" +.TH tzfile 5 2022-09-09 Linux "Linux Programmer's Manual" .SH NAME tzfile \- timezone information .SH DESCRIPTION diff --git a/man5/utmp.5 b/man5/utmp.5 index a3e70c6bfa..e7d85ce8b8 100644 --- a/man5/utmp.5 +++ b/man5/utmp.5 @@ -8,7 +8,7 @@ .\" Modified 1996-07-20 by Michael Haardt .\" Modified 1997-07-02 by Nicolás Lichtmaier .\" Modified 2004-10-31 by aeb, following Gwenole Beauchesne -.TH UTMP 5 (date) "Linux man-pages (unreleased)" +.TH utmp 5 (date) "Linux man-pages (unreleased)" .SH NAME utmp, wtmp \- login records .SH SYNOPSIS diff --git a/man6/intro.6 b/man6/intro.6 index c57e0ab606..4a3dd1ed94 100644 --- a/man6/intro.6 +++ b/man6/intro.6 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: GPL-2.0-or-later .\" .\" Modified Sat Jul 24 17:19:57 1993 by Rik Faith (faith@cs.unc.edu) -.TH INTRO 6 (date) "Linux man-pages (unreleased)" +.TH intro 6 (date) "Linux man-pages (unreleased)" .SH NAME intro \- introduction to games .SH DESCRIPTION diff --git a/man7/address_families.7 b/man7/address_families.7 index 2b29816fd5..455591b212 100644 --- a/man7/address_families.7 +++ b/man7/address_families.7 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH ADDRESS_FAMILIES 7 (date) "Linux man-pages (unreleased)" +.TH address_families 7 (date) "Linux man-pages (unreleased)" .SH NAME address_families \- socket address families (domains) .SH SYNOPSIS diff --git a/man7/arp.7 b/man7/arp.7 index 4855e893e6..b23d0ce067 100644 --- a/man7/arp.7 +++ b/man7/arp.7 @@ -9,7 +9,7 @@ .\" Modified June 1999 Andi Kleen .\" $Id: arp.7,v 1.10 2000/04/27 19:31:38 ak Exp $ .\" -.TH ARP 7 (date) "Linux man-pages (unreleased)" +.TH arp 7 (date) "Linux man-pages (unreleased)" .SH NAME arp \- Linux ARP kernel module. .SH DESCRIPTION diff --git a/man7/ascii.7 b/man7/ascii.7 index 71e89384bd..4428549f4a 100644 --- a/man7/ascii.7 +++ b/man7/ascii.7 @@ -12,7 +12,7 @@ .\" Modified 1999-08-08 by Michael Haardt (michael@moria.de) .\" Modified 2004-04-01 by aeb .\" -.TH ASCII 7 (date) "Linux man-pages (unreleased)" +.TH ascii 7 (date) "Linux man-pages (unreleased)" .SH NAME ascii \- ASCII character set encoded in octal, decimal, and hexadecimal diff --git a/man7/attributes.7 b/man7/attributes.7 index 55a3ab609d..02b2661b81 100644 --- a/man7/attributes.7 +++ b/man7/attributes.7 @@ -2,7 +2,7 @@ .\" Written by Alexandre Oliva .\" .\" SPDX-License-Identifier: GPL-2.0-or-later -.TH ATTRIBUTES 7 (date) "Linux man-pages (unreleased)" +.TH attributes 7 (date) "Linux man-pages (unreleased)" .SH NAME attributes \- POSIX safety concepts .SH DESCRIPTION diff --git a/man7/boot.7 b/man7/boot.7 index b9a25cb539..bfe35dcd05 100644 --- a/man7/boot.7 +++ b/man7/boot.7 @@ -10,7 +10,7 @@ .\" .\" Modified 2004-11-03 patch from Martin Schulze .\" -.TH BOOT 7 (date) "Linux man-pages (unreleased)" +.TH boot 7 (date) "Linux man-pages (unreleased)" .SH NAME boot \- System bootup process based on UNIX System V Release 4 .SH DESCRIPTION diff --git a/man7/bootparam.7 b/man7/bootparam.7 index 1b22ec4ed2..ff74e8d1b2 100644 --- a/man7/bootparam.7 +++ b/man7/bootparam.7 @@ -6,7 +6,7 @@ .\" (dated v1.0.1, 15/08/95). .\" Major update, aeb, 970114. .\" -.TH BOOTPARAM 7 (date) "Linux man-pages (unreleased)" +.TH bootparam 7 (date) "Linux man-pages (unreleased)" .SH NAME bootparam \- introduction to boot time parameters of the Linux kernel .SH DESCRIPTION diff --git a/man7/cgroup_namespaces.7 b/man7/cgroup_namespaces.7 index 96960f53b8..b69f91adf4 100644 --- a/man7/cgroup_namespaces.7 +++ b/man7/cgroup_namespaces.7 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH CGROUP_NAMESPACES 7 (date) "Linux man-pages (unreleased)" +.TH cgroup_namespaces 7 (date) "Linux man-pages (unreleased)" .SH NAME cgroup_namespaces \- overview of Linux cgroup namespaces .SH DESCRIPTION diff --git a/man7/cgroups.7 b/man7/cgroups.7 index 26a82f80f3..ea8da680a4 100644 --- a/man7/cgroups.7 +++ b/man7/cgroups.7 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH CGROUPS 7 (date) "Linux man-pages (unreleased)" +.TH cgroups 7 (date) "Linux man-pages (unreleased)" .SH NAME cgroups \- Linux control groups .SH DESCRIPTION diff --git a/man7/charsets.7 b/man7/charsets.7 index 68bd1f0ed7..3e46ab9cdd 100644 --- a/man7/charsets.7 +++ b/man7/charsets.7 @@ -8,7 +8,7 @@ .\" .\" Changes also by David Starner . .\" -.TH CHARSETS 7 (date) "Linux man-pages (unreleased)" +.TH charsets 7 (date) "Linux man-pages (unreleased)" .SH NAME charsets \- character set standards and internationalization .SH DESCRIPTION diff --git a/man7/complex.7 b/man7/complex.7 index 24e251acb9..7409ba177a 100644 --- a/man7/complex.7 +++ b/man7/complex.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" -.TH COMPLEX 7 (date) "Linux man-pages (unreleased)" +.TH complex 7 (date) "Linux man-pages (unreleased)" .SH NAME complex \- basics of complex mathematics .SH SYNOPSIS diff --git a/man7/cp1251.7 b/man7/cp1251.7 index 3de117d348..ecf43d45eb 100644 --- a/man7/cp1251.7 +++ b/man7/cp1251.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH CP1251 7 (date) "Linux man-pages (unreleased)" +.TH cp1251 7 (date) "Linux man-pages (unreleased)" .SH NAME cp1251 \- CP\ 1251 character set encoded in octal, decimal, and hexadecimal diff --git a/man7/cp1252.7 b/man7/cp1252.7 index adf60231c6..560716efc6 100644 --- a/man7/cp1252.7 +++ b/man7/cp1252.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH CP1252 7 (date) "Linux man-pages (unreleased)" +.TH cp1252 7 (date) "Linux man-pages (unreleased)" .SH NAME cp1252 \- CP\ 1252 character set encoded in octal, decimal, and hexadecimal diff --git a/man7/cpuset.7 b/man7/cpuset.7 index aae3ac04c8..e3b9b403e6 100644 --- a/man7/cpuset.7 +++ b/man7/cpuset.7 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-only .\" -.TH CPUSET 7 (date) "Linux man-pages (unreleased)" +.TH cpuset 7 (date) "Linux man-pages (unreleased)" .SH NAME cpuset \- confine processes to processor and memory node subsets .SH DESCRIPTION diff --git a/man7/credentials.7 b/man7/credentials.7 index 60f4aeba40..1ee4885579 100644 --- a/man7/credentials.7 +++ b/man7/credentials.7 @@ -4,7 +4,7 @@ .\" .\" 2007-06-13 Creation .\" -.TH CREDENTIALS 7 (date) "Linux man-pages (unreleased)" +.TH credentials 7 (date) "Linux man-pages (unreleased)" .SH NAME credentials \- process identifiers .SH DESCRIPTION diff --git a/man7/ddp.7 b/man7/ddp.7 index b6e8ac7641..cec2de3be0 100644 --- a/man7/ddp.7 +++ b/man7/ddp.7 @@ -9,7 +9,7 @@ .\" .\" $Id: ddp.7,v 1.3 1999/05/13 11:33:22 freitag Exp $ .\" -.TH DDP 7 (date) "Linux man-pages (unreleased)" +.TH ddp 7 (date) "Linux man-pages (unreleased)" .SH NAME ddp \- Linux AppleTalk protocol implementation .SH SYNOPSIS diff --git a/man7/epoll.7 b/man7/epoll.7 index 146cc815af..3812d94e39 100644 --- a/man7/epoll.7 +++ b/man7/epoll.7 @@ -4,7 +4,7 @@ .\" .\" Davide Libenzi .\" -.TH EPOLL 7 (date) "Linux man-pages (unreleased)" +.TH epoll 7 (date) "Linux man-pages (unreleased)" .SH NAME epoll \- I/O event notification facility .SH SYNOPSIS diff --git a/man7/fanotify.7 b/man7/fanotify.7 index 6531f2eaed..87417ed29f 100644 --- a/man7/fanotify.7 +++ b/man7/fanotify.7 @@ -2,7 +2,7 @@ .\" and Copyright (C) 2014, Michael Kerrisk .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft -.TH FANOTIFY 7 (date) "Linux man-pages (unreleased)" +.TH fanotify 7 (date) "Linux man-pages (unreleased)" .SH NAME fanotify \- monitoring filesystem events .SH DESCRIPTION diff --git a/man7/feature_test_macros.7 b/man7/feature_test_macros.7 index 6a5f1de62e..6e704f0163 100644 --- a/man7/feature_test_macros.7 +++ b/man7/feature_test_macros.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH FEATURE_TEST_MACROS 7 (date) "Linux man-pages (unreleased)" +.TH feature_test_macros 7 (date) "Linux man-pages (unreleased)" .SH NAME feature_test_macros \- feature test macros .SH DESCRIPTION diff --git a/man7/fifo.7 b/man7/fifo.7 index 9fdb7e638b..141414f297 100644 --- a/man7/fifo.7 +++ b/man7/fifo.7 @@ -9,7 +9,7 @@ .\" .\" 990620 - page created - aeb@cwi.nl .\" -.TH FIFO 7 (date) "Linux man-pages (unreleased)" +.TH fifo 7 (date) "Linux man-pages (unreleased)" .SH NAME fifo \- first-in first-out special file, named pipe .SH DESCRIPTION diff --git a/man7/futex.7 b/man7/futex.7 index 0e768fd17e..541162c106 100644 --- a/man7/futex.7 +++ b/man7/futex.7 @@ -6,7 +6,7 @@ .\" .\" SPDX-License-Identifier: MIT .\" -.TH FUTEX 7 (date) "Linux man-pages (unreleased)" +.TH futex 7 (date) "Linux man-pages (unreleased)" .SH NAME futex \- fast user-space locking .SH SYNOPSIS diff --git a/man7/glob.7 b/man7/glob.7 index 04794d75e5..d4954ccdcb 100644 --- a/man7/glob.7 +++ b/man7/glob.7 @@ -4,7 +4,7 @@ .\" .\" 2003-08-24 fix for / by John Kristoff + joey .\" -.TH GLOB 7 (date) "Linux man-pages (unreleased)" +.TH glob 7 (date) "Linux man-pages (unreleased)" .SH NAME glob \- globbing pathnames .SH DESCRIPTION diff --git a/man7/hier.7 b/man7/hier.7 index 3226364c36..6c2075ff68 100644 --- a/man7/hier.7 +++ b/man7/hier.7 @@ -8,7 +8,7 @@ .\" Modified Mon Feb 6 16:41:00 1999 by Nicolás Lichtmaier .\" Modified Tue Feb 8 16:46:45 2000 by Chris Pepper .\" Modified Fri Sep 7 20:32:45 2001 by Tammy Fox -.TH HIER 7 (date) "Linux man-pages (unreleased)" +.TH hier 7 (date) "Linux man-pages (unreleased)" .SH NAME hier \- description of the filesystem hierarchy .SH DESCRIPTION diff --git a/man7/hostname.7 b/man7/hostname.7 index 0d50ff4aff..f1b5a7de9f 100644 --- a/man7/hostname.7 +++ b/man7/hostname.7 @@ -8,7 +8,7 @@ .\" .\" 2008-06-11, mtk, Taken from FreeBSD 6.2 and modified for Linux. .\" -.TH HOSTNAME 7 (date) "Linux man-pages (unreleased)" +.TH hostname 7 (date) "Linux man-pages (unreleased)" .SH NAME hostname \- hostname resolution description .SH DESCRIPTION diff --git a/man7/icmp.7 b/man7/icmp.7 index b327b6207e..f96d4d1a53 100644 --- a/man7/icmp.7 +++ b/man7/icmp.7 @@ -9,7 +9,7 @@ .\" .\" $Id: icmp.7,v 1.6 2000/08/14 08:03:45 ak Exp $ .\" -.TH ICMP 7 (date) "Linux man-pages (unreleased)" +.TH icmp 7 (date) "Linux man-pages (unreleased)" .SH NAME icmp \- Linux IPv4 ICMP kernel module. .SH DESCRIPTION diff --git a/man7/inode.7 b/man7/inode.7 index 9cbce1e8d6..7fa1967c4d 100644 --- a/man7/inode.7 +++ b/man7/inode.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH INODE 7 (date) "Linux man-pages (unreleased)" +.TH inode 7 (date) "Linux man-pages (unreleased)" .SH NAME inode \- file inode information .SH DESCRIPTION diff --git a/man7/inotify.7 b/man7/inotify.7 index dba592c25d..8821e136f0 100644 --- a/man7/inotify.7 +++ b/man7/inotify.7 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH INOTIFY 7 (date) "Linux man-pages (unreleased)" +.TH inotify 7 (date) "Linux man-pages (unreleased)" .SH NAME inotify \- monitoring filesystem events .SH DESCRIPTION diff --git a/man7/intro.7 b/man7/intro.7 index cd21fe09ac..0ed9f73cec 100644 --- a/man7/intro.7 +++ b/man7/intro.7 @@ -6,7 +6,7 @@ .\" .\" Modified by Thomas Koenig (ig25@rz.uni-karlsruhe.de) 24 Apr 1993 .\" Modified Sat Jul 24 17:28:08 1993 by Rik Faith (faith@cs.unc.edu) -.TH INTRO 7 (date) "Linux man-pages (unreleased)" +.TH intro 7 (date) "Linux man-pages (unreleased)" .SH NAME intro \- introduction to overview and miscellany section .SH DESCRIPTION diff --git a/man7/ip.7 b/man7/ip.7 index cd6d25b51c..243426ad45 100644 --- a/man7/ip.7 +++ b/man7/ip.7 @@ -39,7 +39,7 @@ .\" commit 76e21053b5bf33a07c76f99d27a74238310e3c71 .\" Author: Erich E. Hoover .\" -.TH IP 7 (date) "Linux man-pages (unreleased)" +.TH ip 7 (date) "Linux man-pages (unreleased)" .SH NAME ip \- Linux IPv4 protocol implementation .SH SYNOPSIS diff --git a/man7/ipc_namespaces.7 b/man7/ipc_namespaces.7 index a284d09c8a..b129e69b00 100644 --- a/man7/ipc_namespaces.7 +++ b/man7/ipc_namespaces.7 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH IPC_NAMESPACES 7 (date) "Linux man-pages (unreleased)" +.TH ipc_namespaces 7 (date) "Linux man-pages (unreleased)" .SH NAME ipc_namespaces \- overview of Linux IPC namespaces .SH DESCRIPTION diff --git a/man7/ipv6.7 b/man7/ipv6.7 index 44451103f8..64c167215c 100644 --- a/man7/ipv6.7 +++ b/man7/ipv6.7 @@ -83,7 +83,7 @@ .\" commit c4062dfc425e94290ac427a98d6b4721dd2bc91f .\" Author: Erich E. Hoover .\" -.TH IPV6 7 (date) "Linux man-pages (unreleased)" +.TH ipv6 7 (date) "Linux man-pages (unreleased)" .SH NAME ipv6 \- Linux IPv6 protocol implementation .SH SYNOPSIS diff --git a/man7/kernel_lockdown.7 b/man7/kernel_lockdown.7 index 883f962555..7976a29c14 100644 --- a/man7/kernel_lockdown.7 +++ b/man7/kernel_lockdown.7 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH KERNEL_LOCKDOWN 7 (date) "Linux man-pages (unreleased)" +.TH kernel_lockdown 7 (date) "Linux man-pages (unreleased)" .SH NAME kernel_lockdown \- kernel image access prevention feature .SH DESCRIPTION diff --git a/man7/keyrings.7 b/man7/keyrings.7 index f6f9594ba2..3589059702 100644 --- a/man7/keyrings.7 +++ b/man7/keyrings.7 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH KEYRINGS 7 (date) "Linux man-pages (unreleased)" +.TH keyrings 7 (date) "Linux man-pages (unreleased)" .SH NAME keyrings \- in-kernel key management and retention facility .SH DESCRIPTION diff --git a/man7/landlock.7 b/man7/landlock.7 index 582f10fd19..5c4ebb2ca5 100644 --- a/man7/landlock.7 +++ b/man7/landlock.7 @@ -4,7 +4,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH LANDLOCK 7 (date) "Linux man-pages (unreleased)" +.TH Landlock 7 (date) "Linux man-pages (unreleased)" .SH NAME Landlock \- unprivileged access-control .SH DESCRIPTION diff --git a/man7/locale.7 b/man7/locale.7 index 696124187e..301fea9055 100644 --- a/man7/locale.7 +++ b/man7/locale.7 @@ -8,7 +8,7 @@ .\" .\" Modified Thu Apr 25 00:43:19 2002 by Bruno Haible .\" -.TH LOCALE 7 (date) "Linux man-pages (unreleased)" +.TH locale 7 (date) "Linux man-pages (unreleased)" .SH NAME locale \- description of multilanguage support .SH SYNOPSIS diff --git a/man7/mailaddr.7 b/man7/mailaddr.7 index c50e8e149a..45ffd7be1d 100644 --- a/man7/mailaddr.7 +++ b/man7/mailaddr.7 @@ -24,7 +24,7 @@ .\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. .\" %%%LICENSE_END .\" -.TH MAILADDR 7 (date) "Linux man-pages (unreleased)" +.TH mailaddr 7 (date) "Linux man-pages (unreleased)" .UC 5 .SH NAME mailaddr \- mail addressing description diff --git a/man7/man.7 b/man7/man.7 index b6a748950e..787b3f0a83 100644 --- a/man7/man.7 +++ b/man7/man.7 @@ -11,7 +11,7 @@ .\" Modified Tue Jul 27 20:12:02 2004 by Colin Watson .\" 2007-05-30, mtk: various rewrites and moved much text to new man-pages.7. .\" -.TH MAN 7 (date) "Linux man-pages (unreleased)" +.TH man 7 (date) "Linux man-pages (unreleased)" .SH NAME man \- macros to format man pages .SH SYNOPSIS diff --git a/man7/math_error.7 b/man7/math_error.7 index 6f93f367dd..c288c9618f 100644 --- a/man7/math_error.7 +++ b/man7/math_error.7 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MATH_ERROR 7 (date) "Linux man-pages (unreleased)" +.TH math_error 7 (date) "Linux man-pages (unreleased)" .SH NAME math_error \- detecting errors from mathematical functions .SH SYNOPSIS diff --git a/man7/mount_namespaces.7 b/man7/mount_namespaces.7 index 5530ce704f..997268cff3 100644 --- a/man7/mount_namespaces.7 +++ b/man7/mount_namespaces.7 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH MOUNT_NAMESPACES 7 (date) "Linux man-pages (unreleased)" +.TH mount_namespaces 7 (date) "Linux man-pages (unreleased)" .SH NAME mount_namespaces \- overview of Linux mount namespaces .SH DESCRIPTION diff --git a/man7/mq_overview.7 b/man7/mq_overview.7 index 10ae3ae5a7..8e3081917e 100644 --- a/man7/mq_overview.7 +++ b/man7/mq_overview.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH MQ_OVERVIEW 7 (date) "Linux man-pages (unreleased)" +.TH mq_overview 7 (date) "Linux man-pages (unreleased)" .SH NAME mq_overview \- overview of POSIX message queues .SH DESCRIPTION diff --git a/man7/namespaces.7 b/man7/namespaces.7 index b7d3142556..06519a30d6 100644 --- a/man7/namespaces.7 +++ b/man7/namespaces.7 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH NAMESPACES 7 (date) "Linux man-pages (unreleased)" +.TH namespaces 7 (date) "Linux man-pages (unreleased)" .SH NAME namespaces \- overview of Linux namespaces .SH DESCRIPTION diff --git a/man7/netdevice.7 b/man7/netdevice.7 index 5864a8268a..67537aaff0 100644 --- a/man7/netdevice.7 +++ b/man7/netdevice.7 @@ -14,7 +14,7 @@ .\" Modified, 2011-11-02, , added many basic .\" but missing ioctls, such as SIOCGIFADDR. .\" -.TH NETDEVICE 7 (date) "Linux man-pages (unreleased)" +.TH netdevice 7 (date) "Linux man-pages (unreleased)" .SH NAME netdevice \- low-level access to Linux network devices .SH SYNOPSIS diff --git a/man7/netlink.7 b/man7/netlink.7 index 05f75f1f42..a69c8cb53c 100644 --- a/man7/netlink.7 +++ b/man7/netlink.7 @@ -5,7 +5,7 @@ .\" Based on the original comments from Alexey Kuznetsov .\" Modified 2005-12-27 by Hasso Tepper .\" $Id: netlink.7,v 1.8 2000/06/22 13:23:00 ak Exp $ -.TH NETLINK 7 (date) "Linux man-pages (unreleased)" +.TH netlink 7 (date) "Linux man-pages (unreleased)" .SH NAME netlink \- communication between kernel and user space (AF_NETLINK) .SH SYNOPSIS diff --git a/man7/network_namespaces.7 b/man7/network_namespaces.7 index f7d2dca16e..1acf5fbf1b 100644 --- a/man7/network_namespaces.7 +++ b/man7/network_namespaces.7 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH NETWORK_NAMESPACES 7 (date) "Linux man-pages (unreleased)" +.TH network_namespaces 7 (date) "Linux man-pages (unreleased)" .SH NAME network_namespaces \- overview of Linux network namespaces .SH DESCRIPTION diff --git a/man7/nptl.7 b/man7/nptl.7 index 5a17e05414..784a550708 100644 --- a/man7/nptl.7 +++ b/man7/nptl.7 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH NPTL 7 (date) "Linux man-pages (unreleased)" +.TH nptl 7 (date) "Linux man-pages (unreleased)" .SH NAME nptl \- Native POSIX Threads Library .SH DESCRIPTION diff --git a/man7/numa.7 b/man7/numa.7 index 411afd8104..81fd51c6fd 100644 --- a/man7/numa.7 +++ b/man7/numa.7 @@ -6,7 +6,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH NUMA 7 (date) "Linux man-pages (unreleased)" +.TH numa 7 (date) "Linux man-pages (unreleased)" .SH NAME numa \- overview of Non-Uniform Memory Architecture .SH DESCRIPTION diff --git a/man7/operator.7 b/man7/operator.7 index ef8fde6f60..a573ff22c0 100644 --- a/man7/operator.7 +++ b/man7/operator.7 @@ -13,7 +13,7 @@ .\" .\" 2007-12-08, mtk, Converted from mdoc to man macros .\" -.TH OPERATOR 7 (date) "Linux man-pages (unreleased)" +.TH operator 7 (date) "Linux man-pages (unreleased)" .SH NAME operator \- C operator precedence and order of evaluation .SH DESCRIPTION diff --git a/man7/packet.7 b/man7/packet.7 index c3650cfec3..8fae8232be 100644 --- a/man7/packet.7 +++ b/man7/packet.7 @@ -9,7 +9,7 @@ .\" .\" $Id: packet.7,v 1.13 2000/08/14 08:03:45 ak Exp $ .\" -.TH PACKET 7 (date) "Linux man-pages (unreleased)" +.TH packet 7 (date) "Linux man-pages (unreleased)" .SH NAME packet \- packet interface on device level .SH SYNOPSIS diff --git a/man7/path_resolution.7 b/man7/path_resolution.7 index bc6a80195c..9e091e68c5 100644 --- a/man7/path_resolution.7 +++ b/man7/path_resolution.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PATH_RESOLUTION 7 (date) "Linux man-pages (unreleased)" +.TH path_resolution 7 (date) "Linux man-pages (unreleased)" .SH NAME path_resolution \- how a pathname is resolved to a file .SH DESCRIPTION diff --git a/man7/pid_namespaces.7 b/man7/pid_namespaces.7 index b1c5160e64..05415d88a7 100644 --- a/man7/pid_namespaces.7 +++ b/man7/pid_namespaces.7 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH PID_NAMESPACES 7 (date) "Linux man-pages (unreleased)" +.TH pid_namespaces 7 (date) "Linux man-pages (unreleased)" .SH NAME pid_namespaces \- overview of Linux PID namespaces .SH DESCRIPTION diff --git a/man7/pipe.7 b/man7/pipe.7 index 40d08d8091..852cbd94fb 100644 --- a/man7/pipe.7 +++ b/man7/pipe.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PIPE 7 (date) "Linux man-pages (unreleased)" +.TH pipe 7 (date) "Linux man-pages (unreleased)" .SH NAME pipe \- overview of pipes and FIFOs .SH DESCRIPTION diff --git a/man7/pkeys.7 b/man7/pkeys.7 index da6b0953c7..2ef56711f2 100644 --- a/man7/pkeys.7 +++ b/man7/pkeys.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PKEYS 7 (date) "Linux man-pages (unreleased)" +.TH pkeys 7 (date) "Linux man-pages (unreleased)" .SH NAME pkeys \- overview of Memory Protection Keys .SH DESCRIPTION diff --git a/man7/posixoptions.7 b/man7/posixoptions.7 index aec29bf067..47d210492b 100644 --- a/man7/posixoptions.7 +++ b/man7/posixoptions.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH POSIXOPTIONS 7 (date) "Linux man-pages (unreleased)" +.TH posixoptions 7 (date) "Linux man-pages (unreleased)" .SH NAME posixoptions \- optional parts of the POSIX standard .SH DESCRIPTION diff --git a/man7/pty.7 b/man7/pty.7 index 5adaca96c2..79e646a866 100644 --- a/man7/pty.7 +++ b/man7/pty.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH PTY 7 (date) "Linux man-pages (unreleased)" +.TH pty 7 (date) "Linux man-pages (unreleased)" .SH NAME pty \- pseudoterminal interfaces .SH DESCRIPTION diff --git a/man7/queue.7 b/man7/queue.7 index 0629d3c64e..64bbb286f6 100644 --- a/man7/queue.7 +++ b/man7/queue.7 @@ -5,7 +5,7 @@ .\" SPDX-License-Identifier: BSD-3-Clause .\" .\" -.TH QUEUE 7 (date) "Linux man-pages (unreleased)" +.TH queue 7 (date) "Linux man-pages (unreleased)" .SH NAME queue \- implementations of linked lists and queues .SH DESCRIPTION diff --git a/man7/random.7 b/man7/random.7 index 666e133323..c0902798c0 100644 --- a/man7/random.7 +++ b/man7/random.7 @@ -8,7 +8,7 @@ .\" The following web page is quite informative: .\" http://www.2uo.de/myths-about-urandom/ .\" -.TH RANDOM 7 (date) "Linux man-pages (unreleased)" +.TH random 7 (date) "Linux man-pages (unreleased)" .SH NAME random \- overview of interfaces for obtaining randomness .SH DESCRIPTION diff --git a/man7/raw.7 b/man7/raw.7 index dcd1b7774a..316790f295 100644 --- a/man7/raw.7 +++ b/man7/raw.7 @@ -9,7 +9,7 @@ .\" .\" $Id: raw.7,v 1.6 1999/06/05 10:32:08 freitag Exp $ .\" -.TH RAW 7 (date) "Linux man-pages (unreleased)" +.TH raw 7 (date) "Linux man-pages (unreleased)" .SH NAME raw \- Linux IPv4 raw sockets .SH SYNOPSIS diff --git a/man7/regex.7 b/man7/regex.7 index ded7251697..59b50258b9 100644 --- a/man7/regex.7 +++ b/man7/regex.7 @@ -34,7 +34,7 @@ .\" .ie t .ds dg \(dg .el .ds dg (!) -.TH REGEX 7 (date) "Linux man-pages (unreleased)" +.TH regex 7 (date) "Linux man-pages (unreleased)" .SH NAME regex \- POSIX.2 regular expressions .SH DESCRIPTION diff --git a/man7/rtnetlink.7 b/man7/rtnetlink.7 index 6ed97a6935..be43227743 100644 --- a/man7/rtnetlink.7 +++ b/man7/rtnetlink.7 @@ -11,7 +11,7 @@ .\" help from Matthew Wilcox. .\" $Id: rtnetlink.7,v 1.8 2000/01/22 01:55:04 freitag Exp $ .\" -.TH RTNETLINK 7 (date) "Linux man-pages (unreleased)" +.TH rtnetlink 7 (date) "Linux man-pages (unreleased)" .SH NAME rtnetlink \- Linux routing socket .SH SYNOPSIS diff --git a/man7/sched.7 b/man7/sched.7 index 8432552157..a157c35ac9 100644 --- a/man7/sched.7 +++ b/man7/sched.7 @@ -10,7 +10,7 @@ .\" .\" Worth looking at: http://rt.wiki.kernel.org/index.php .\" -.TH SCHED 7 (date) "Linux man-pages (unreleased)" +.TH sched 7 (date) "Linux man-pages (unreleased)" .SH NAME sched \- overview of CPU scheduling .SH DESCRIPTION diff --git a/man7/sem_overview.7 b/man7/sem_overview.7 index fb5f7b8d11..31bb048a66 100644 --- a/man7/sem_overview.7 +++ b/man7/sem_overview.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SEM_OVERVIEW 7 (date) "Linux man-pages (unreleased)" +.TH sem_overview 7 (date) "Linux man-pages (unreleased)" .SH NAME sem_overview \- overview of POSIX semaphores .SH DESCRIPTION diff --git a/man7/shm_overview.7 b/man7/shm_overview.7 index e33385b063..14eb2ef5d5 100644 --- a/man7/shm_overview.7 +++ b/man7/shm_overview.7 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SHM_OVERVIEW 7 (date) "Linux man-pages (unreleased)" +.TH shm_overview 7 (date) "Linux man-pages (unreleased)" .SH NAME shm_overview \- overview of POSIX shared memory .SH DESCRIPTION diff --git a/man7/sigevent.7 b/man7/sigevent.7 index 68546f3448..682d09efc4 100644 --- a/man7/sigevent.7 +++ b/man7/sigevent.7 @@ -3,7 +3,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH SIGEVENT 7 (date) "Linux man-pages (unreleased)" +.TH sigevent 7 (date) "Linux man-pages (unreleased)" .SH NAME sigevent \- structure for notification from asynchronous routines .SH SYNOPSIS diff --git a/man7/signal.7 b/man7/signal.7 index 0d5f219275..05d5cc9e19 100644 --- a/man7/signal.7 +++ b/man7/signal.7 @@ -22,7 +22,7 @@ .\" Added section on stop/cont signals interrupting syscalls. .\" 2008-10-05, mtk: various additions .\" -.TH SIGNAL 7 (date) "Linux man-pages (unreleased)" +.TH signal 7 (date) "Linux man-pages (unreleased)" .SH NAME signal \- overview of signals .SH DESCRIPTION diff --git a/man7/sock_diag.7 b/man7/sock_diag.7 index 2d26680602..0f5d4b80e3 100644 --- a/man7/sock_diag.7 +++ b/man7/sock_diag.7 @@ -2,7 +2,7 @@ .\" Copyright (c) 2016 Dmitry V. Levin .\" .\" SPDX-License-Identifier: GPL-2.0-or-later -.TH SOCK_DIAG 7 (date) "Linux man-pages (unreleased)" +.TH sock_diag 7 (date) "Linux man-pages (unreleased)" .SH NAME sock_diag \- obtaining information about sockets .SH SYNOPSIS diff --git a/man7/socket.7 b/man7/socket.7 index bcc532b315..2b191c7836 100644 --- a/man7/socket.7 +++ b/man7/socket.7 @@ -51,7 +51,7 @@ .\" commit ea02f9411d9faa3553ed09ce0ec9f00ceae9885e .\" Author: Michal Sekletar .\" -.TH SOCKET 7 (date) "Linux man-pages (unreleased)" +.TH socket 7 (date) "Linux man-pages (unreleased)" .SH NAME socket \- Linux socket interface .SH SYNOPSIS diff --git a/man7/spufs.7 b/man7/spufs.7 index 83f39b2ea5..f012d08206 100644 --- a/man7/spufs.7 +++ b/man7/spufs.7 @@ -10,7 +10,7 @@ .\" 2007-07-10, quite a lot of polishing by mtk .\" 2007-09-28, updates for newer kernels by Jeremy Kerr .\" -.TH SPUFS 7 (date) "Linux man-pages (unreleased)" +.TH spufs 7 (date) "Linux man-pages (unreleased)" .SH NAME spufs \- SPU filesystem .SH DESCRIPTION diff --git a/man7/standards.7 b/man7/standards.7 index c39ba878ed..3073025fdb 100644 --- a/man7/standards.7 +++ b/man7/standards.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH STANDARDS 7 (date) "Linux man-pages (unreleased)" +.TH standards 7 (date) "Linux man-pages (unreleased)" .SH NAME standards \- C and UNIX Standards .SH DESCRIPTION diff --git a/man7/symlink.7 b/man7/symlink.7 index 01eb17cfbd..ac758142a4 100644 --- a/man7/symlink.7 +++ b/man7/symlink.7 @@ -10,7 +10,7 @@ .\" 2008-06-11, mtk, Taken from FreeBSD 6.2 and heavily edited for .\" specific Linux details, improved readability, and man-pages style. .\" -.TH SYMLINK 7 (date) "Linux man-pages (unreleased)" +.TH symlink 7 (date) "Linux man-pages (unreleased)" .SH NAME symlink \- symbolic link handling .SH DESCRIPTION diff --git a/man7/system_data_types.7 b/man7/system_data_types.7 index c0950e7745..134175c33c 100644 --- a/man7/system_data_types.7 +++ b/man7/system_data_types.7 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH SYSTEM_DATA_TYPES 7 (date) "Linux man-pages (unreleased)" +.TH system_data_types 7 (date) "Linux man-pages (unreleased)" .SH NAME system_data_types \- overview of system data types .SH DESCRIPTION diff --git a/man7/tcp.7 b/man7/tcp.7 index 943c9be707..2430a084ca 100644 --- a/man7/tcp.7 +++ b/man7/tcp.7 @@ -93,7 +93,7 @@ .\" commit cd8ae85299d54155702a56811b2e035e63064d3d .\" Author: Eric Dumazet .\" -.TH TCP 7 (date) "Linux man-pages (unreleased)" +.TH tcp 7 (date) "Linux man-pages (unreleased)" .SH NAME tcp \- TCP protocol .SH SYNOPSIS diff --git a/man7/termio.7 b/man7/termio.7 index d440d5f12c..89684955eb 100644 --- a/man7/termio.7 +++ b/man7/termio.7 @@ -4,7 +4,7 @@ .\" .\" 28 Dec 2006 - Initial Creation .\" -.TH TERMIO 7 (date) "Linux man-pages (unreleased)" +.TH termio 7 (date) "Linux man-pages (unreleased)" .SH NAME termio \- System V terminal driver interface .SH DESCRIPTION diff --git a/man7/time.7 b/man7/time.7 index 96e00d5284..358bc7f9e5 100644 --- a/man7/time.7 +++ b/man7/time.7 @@ -5,7 +5,7 @@ .\" 2008-06-24, mtk: added some details about where jiffies come into .\" play; added section on high-resolution timers. .\" -.TH TIME 7 (date) "Linux man-pages (unreleased)" +.TH time 7 (date) "Linux man-pages (unreleased)" .SH NAME time \- overview of time and timers .SH DESCRIPTION diff --git a/man7/time_namespaces.7 b/man7/time_namespaces.7 index a3032aac38..9d11a2a161 100644 --- a/man7/time_namespaces.7 +++ b/man7/time_namespaces.7 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH TIME_NAMESPACES 7 (date) "Linux man-pages (unreleased)" +.TH time_namespaces 7 (date) "Linux man-pages (unreleased)" .SH NAME time_namespaces \- overview of Linux time namespaces .SH DESCRIPTION diff --git a/man7/udp.7 b/man7/udp.7 index fd56d58486..130d16c949 100644 --- a/man7/udp.7 +++ b/man7/udp.7 @@ -9,7 +9,7 @@ .\" .\" $Id: udp.7,v 1.7 2000/01/22 01:55:05 freitag Exp $ .\" -.TH UDP 7 (date) "Linux man-pages (unreleased)" +.TH udp 7 (date) "Linux man-pages (unreleased)" .SH NAME udp \- User Datagram Protocol for IPv4 .SH SYNOPSIS diff --git a/man7/udplite.7 b/man7/udplite.7 index 43b377bf0c..db5a901038 100644 --- a/man7/udplite.7 +++ b/man7/udplite.7 @@ -4,7 +4,7 @@ .\" .\" $Id: udplite.7,v 1.12 2008/07/23 15:22:22 gerrit Exp gerrit $ .\" -.TH UDPLITE 7 (date) "Linux man-pages (unreleased)" +.TH udplite 7 (date) "Linux man-pages (unreleased)" .SH NAME udplite \- Lightweight User Datagram Protocol .SH SYNOPSIS diff --git a/man7/unicode.7 b/man7/unicode.7 index 825b470427..67bea5d6a6 100644 --- a/man7/unicode.7 +++ b/man7/unicode.7 @@ -7,7 +7,7 @@ .\" 2001-05-11 Markus Kuhn .\" Update .\" -.TH UNICODE 7 (date) "Linux man-pages (unreleased)" +.TH unicode 7 (date) "Linux man-pages (unreleased)" .SH NAME unicode \- universal character set .SH DESCRIPTION diff --git a/man7/units.7 b/man7/units.7 index 43b63764c9..557840d459 100644 --- a/man7/units.7 +++ b/man7/units.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH UNITS 7 (date) "Linux man-pages (unreleased)" +.TH units 7 (date) "Linux man-pages (unreleased)" .SH NAME units \- decimal and binary prefixes .SH DESCRIPTION diff --git a/man7/uri.7 b/man7/uri.7 index 22d4227a73..2210b86e1d 100644 --- a/man7/uri.7 +++ b/man7/uri.7 @@ -25,7 +25,7 @@ .\" Modified Fri Aug 21 23:00:00 1999 by David A. Wheeler (dwheeler@dwheeler.com) .\" Modified Tue Mar 14 2000 by David A. Wheeler (dwheeler@dwheeler.com) .\" -.TH URI 7 (date) "Linux man-pages (unreleased)" +.TH uri 7 (date) "Linux man-pages (unreleased)" .SH NAME uri, url, urn \- uniform resource identifier (URI), including a URL or URN .SH SYNOPSIS diff --git a/man7/user_namespaces.7 b/man7/user_namespaces.7 index 02d3ee01cd..fff6e2caab 100644 --- a/man7/user_namespaces.7 +++ b/man7/user_namespaces.7 @@ -4,7 +4,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH USER_NAMESPACES 7 (date) "Linux man-pages (unreleased)" +.TH user_namespaces 7 (date) "Linux man-pages (unreleased)" .SH NAME user_namespaces \- overview of Linux user namespaces .SH DESCRIPTION diff --git a/man7/uts_namespaces.7 b/man7/uts_namespaces.7 index 88cd864fcd..0e06daa9a0 100644 --- a/man7/uts_namespaces.7 +++ b/man7/uts_namespaces.7 @@ -3,7 +3,7 @@ .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .\" -.TH UTS_NAMESPACES 7 (date) "Linux man-pages (unreleased)" +.TH uts_namespaces 7 (date) "Linux man-pages (unreleased)" .SH NAME uts_namespaces \- overview of Linux UTS namespaces .SH DESCRIPTION diff --git a/man7/vsock.7 b/man7/vsock.7 index 3a6beed275..397e361b08 100644 --- a/man7/vsock.7 +++ b/man7/vsock.7 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" -.TH VSOCK 7 (date) "Linux man-pages (unreleased)" +.TH vsock 7 (date) "Linux man-pages (unreleased)" .SH NAME vsock \- Linux VSOCK address family .SH SYNOPSIS diff --git a/man7/x25.7 b/man7/x25.7 index 458b1459a8..20fb661697 100644 --- a/man7/x25.7 +++ b/man7/x25.7 @@ -9,7 +9,7 @@ .\" .\" $Id: x25.7,v 1.4 1999/05/18 10:35:12 freitag Exp $ .\" -.TH X25 7 (date) "Linux man-pages (unreleased)" +.TH x25 7 (date) "Linux man-pages (unreleased)" .SH NAME x25 \- ITU-T X.25 / ISO-8208 protocol interface .SH SYNOPSIS diff --git a/man7/xattr.7 b/man7/xattr.7 index 3e001a9380..b5057270c4 100644 --- a/man7/xattr.7 +++ b/man7/xattr.7 @@ -6,7 +6,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH XATTR 7 (date) "Linux man-pages (unreleased)" +.TH xattr 7 (date) "Linux man-pages (unreleased)" .SH NAME xattr \- Extended attributes .SH DESCRIPTION diff --git a/man8/iconvconfig.8 b/man8/iconvconfig.8 index d739eb75ae..83cdfb2533 100644 --- a/man8/iconvconfig.8 +++ b/man8/iconvconfig.8 @@ -2,7 +2,7 @@ .\" .\" SPDX-License-Identifier: GPL-2.0-or-later .\" -.TH ICONVCONFIG 8 (date) "Linux man-pages (unreleased)" +.TH iconvconfig 8 (date) "Linux man-pages (unreleased)" .SH NAME iconvconfig \- create iconv module configuration cache .SH SYNOPSIS diff --git a/man8/intro.8 b/man8/intro.8 index f479f9375e..ad6509a912 100644 --- a/man8/intro.8 +++ b/man8/intro.8 @@ -7,7 +7,7 @@ .\" Modified Sat Jul 24 17:35:48 1993 by Rik Faith (faith@cs.unc.edu) .\" 2007-10-23 mtk: minor rewrites, and added paragraph on exit status .\" -.TH INTRO 8 (date) "Linux man-pages (unreleased)" +.TH intro 8 (date) "Linux man-pages (unreleased)" .SH NAME intro \- introduction to administration and privileged commands .SH DESCRIPTION diff --git a/man8/nscd.8 b/man8/nscd.8 index 193320d6b1..557d35a4e4 100644 --- a/man8/nscd.8 +++ b/man8/nscd.8 @@ -6,7 +6,7 @@ .\" 2008-12-05 Petr Baudis .\" Rewrite the NOTES section to reflect modern reality .\" -.TH NSCD 8 (date) "Linux man-pages (unreleased)" +.TH nscd 8 (date) "Linux man-pages (unreleased)" .SH NAME nscd \- name service cache daemon .SH DESCRIPTION diff --git a/man8/tzselect.8 b/man8/tzselect.8 index c33323cc7b..2319c61582 100644 --- a/man8/tzselect.8 +++ b/man8/tzselect.8 @@ -2,7 +2,7 @@ .\" This page is in the public domain .\" %%%LICENSE_END .\" -.TH TZSELECT 8 (date) "Linux man-pages (unreleased)" +.TH tzselect 8 (date) "Linux man-pages (unreleased)" .SH NAME tzselect \- select a timezone .SH SYNOPSIS diff --git a/man8/zdump.8 b/man8/zdump.8 index 81c6c64c8e..abbead6eff 100644 --- a/man8/zdump.8 +++ b/man8/zdump.8 @@ -2,7 +2,7 @@ .\" This page is in the public domain .\" %%%LICENSE_END .\" -.TH ZDUMP 8 2020-04-27 "" "Linux System Administration" +.TH zdump 8 2020-04-27 "" "Linux System Administration" .SH NAME zdump \- timezone dumper .SH SYNOPSIS diff --git a/man8/zic.8 b/man8/zic.8 index d4720736a5..79b06ae7cf 100644 --- a/man8/zic.8 +++ b/man8/zic.8 @@ -2,7 +2,7 @@ .\" This page is in the public domain .\" %%%LICENSE_END .\" -.TH ZIC 8 2020-08-13 "" "Linux System Administration" +.TH zic 8 2020-08-13 "" "Linux System Administration" .SH NAME zic \- timezone compiler .SH SYNOPSIS