diff options
Diffstat (limited to 'man3')
93 files changed, 155 insertions, 155 deletions
diff --git a/man3/aio_init.3 b/man3/aio_init.3 index 8e693bbd92..2e6518ed5a 100644 --- a/man3/aio_init.3 +++ b/man3/aio_init.3 @@ -30,7 +30,7 @@ aio_init \- asynchronous I/O initialization .nf .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B "#include <aio.h>" - +.PP .BI "void aio_init(const struct aioinit *" init ); .fi .PP diff --git a/man3/asinh.3 b/man3/asinh.3 index 1ff0c20bc1..601ca953bc 100644 --- a/man3/asinh.3 +++ b/man3/asinh.3 @@ -62,7 +62,7 @@ _ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L || /* Since glibc 2.19: */ _DEFAULT_SOURCE || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE .RE - +.PP .BR asinhf (), .BR asinhl (): .RS 4 diff --git a/man3/atan2.3 b/man3/atan2.3 index 06a0376934..ebda957896 100644 --- a/man3/atan2.3 +++ b/man3/atan2.3 @@ -38,12 +38,12 @@ atan2, atan2f, atan2l \- arc tangent function of two variables .SH SYNOPSIS .nf .B #include <math.h> - +.PP .BI "double atan2(double " y ", double " x ); .BI "float atan2f(float " y ", float " x ); .BI "long double atan2l(long double " y ", long double " x ); - .fi +.PP Link with \fI\-lm\fP. .PP .in -4n diff --git a/man3/atanh.3 b/man3/atanh.3 index daf038bc33..92085f5b2f 100644 --- a/man3/atanh.3 +++ b/man3/atanh.3 @@ -62,7 +62,7 @@ _ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L || /* Since glibc 2.19: */ _DEFAULT_SOURCE || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE .RE - +.PP .BR atanhf (), .BR atanhl (): .RS 4 diff --git a/man3/backtrace.3 b/man3/backtrace.3 index 9668f3a400..7cc8764aca 100644 --- a/man3/backtrace.3 +++ b/man3/backtrace.3 @@ -30,17 +30,17 @@ backtrace, backtrace_symbols, backtrace_symbols_fd \- support for application self-debugging .SH SYNOPSIS .B #include <execinfo.h> - +.PP .B int backtrace(void .BI ** buffer , .B int .IB size ); - +.PP .B char **backtrace_symbols(void *const .BI * buffer , .B int .IB size ); - +.PP .B void backtrace_symbols_fd(void *const .BI * buffer , .B int diff --git a/man3/basename.3 b/man3/basename.3 index 352530f8fb..a90d420a5f 100644 --- a/man3/basename.3 +++ b/man3/basename.3 @@ -32,7 +32,7 @@ basename, dirname \- parse pathname components .B #include <libgen.h> .PP .BI "char *dirname(char *" path ); - +.PP .BI "char *basename(char *" path ); .fi .SH DESCRIPTION diff --git a/man3/bswap.3 b/man3/bswap.3 index f01b28fa56..5d75295c04 100644 --- a/man3/bswap.3 +++ b/man3/bswap.3 @@ -28,7 +28,7 @@ bswap_16, bswap_32, bswap_64 \- reverse order of bytes .SH SYNOPSIS .nf .B #include <byteswap.h> - +.PP .BI bswap_16( x ); .BI bswap_32( x ); .BI bswap_64( x ); diff --git a/man3/bzero.3 b/man3/bzero.3 index 0247c44c7d..b176b36516 100644 --- a/man3/bzero.3 +++ b/man3/bzero.3 @@ -30,7 +30,7 @@ bzero, explicit_bzero \- zero a byte string .B #include <strings.h> .PP .BI "void bzero(void *" s ", size_t " n ); - +.PP .B #include <string.h> .PP .BI "void explicit_bzero(void *" s ", size_t " n ); diff --git a/man3/catgets.3 b/man3/catgets.3 index 554f9995f8..7d1906546b 100644 --- a/man3/catgets.3 +++ b/man3/catgets.3 @@ -29,7 +29,7 @@ catgets \- get message from a message catalog .SH SYNOPSIS .nf .B #include <nl_types.h> - +.PP .BI "char *catgets(nl_catd " catalog ", int " set_number \ ", int " message_number , .BI " const char *" message ); diff --git a/man3/catopen.3 b/man3/catopen.3 index f4cef6c2bf..0019b6fc48 100644 --- a/man3/catopen.3 +++ b/man3/catopen.3 @@ -32,7 +32,7 @@ catopen, catclose \- open/close a message catalog .B #include <nl_types.h> .PP .BI "nl_catd catopen(const char *" name ", int " flag ); - +.PP .BI "int catclose(nl_catd " catalog ); .SH DESCRIPTION The function diff --git a/man3/dladdr.3 b/man3/dladdr.3 index 067dbcdfcf..237fb64c14 100644 --- a/man3/dladdr.3 +++ b/man3/dladdr.3 @@ -31,12 +31,12 @@ dladdr, dladdr1 \- translate address to symbolic information .nf .B #define _GNU_SOURCE .B #include <dlfcn.h> - +.PP .BI "int dladdr(void *" addr ", Dl_info *" info ); - +.PP .BI "int dladdr1(void *" addr ", Dl_info *" info ", void **" \ extra_info ", int " flags ); - +.PP Link with \fI\-ldl\fP. .fi .SH DESCRIPTION diff --git a/man3/dlsym.3 b/man3/dlsym.3 index 215f108167..cd673f313a 100644 --- a/man3/dlsym.3 +++ b/man3/dlsym.3 @@ -29,7 +29,7 @@ dlsym, dlvsym \- obtain address of a symbol in a shared object or executable .B #include <dlfcn.h> .PP .BI "void *dlsym(void *" handle ", const char *" symbol ); - +.PP .B #define _GNU_SOURCE .br .B #include <dlfcn.h> diff --git a/man3/endian.3 b/man3/endian.3 index a82b564123..5e6a944d02 100644 --- a/man3/endian.3 +++ b/man3/endian.3 @@ -33,17 +33,17 @@ convert values between host and big-/little-endian byte order .SH SYNOPSIS .nf .B #include <endian.h> - +.PP .BI "uint16_t htobe16(uint16_t " host_16bits ); .BI "uint16_t htole16(uint16_t " host_16bits ); .BI "uint16_t be16toh(uint16_t " big_endian_16bits ); .BI "uint16_t le16toh(uint16_t " little_endian_16bits ); - +.PP .BI "uint32_t htobe32(uint32_t " host_32bits ); .BI "uint32_t htole32(uint32_t " host_32bits ); .BI "uint32_t be32toh(uint32_t " big_endian_32bits ); .BI "uint32_t le32toh(uint32_t " little_endian_32bits ); - +.PP .BI "uint64_t htobe64(uint64_t " host_64bits ); .BI "uint64_t htole64(uint64_t " host_64bits ); .BI "uint64_t be64toh(uint64_t " big_endian_64bits ); diff --git a/man3/envz_add.3 b/man3/envz_add.3 index 4cdb335bb6..dba21d9405 100644 --- a/man3/envz_add.3 +++ b/man3/envz_add.3 @@ -14,23 +14,23 @@ envz_remove, envz_strip \- environment string support .SH SYNOPSIS .nf .B "#include <envz.h>" - +.PP .BI "error_t envz_add(char **" envz ", size_t *" envz_len , .BI " const char *" name ", const char *" value ); - +.PP .BI "char *envz_entry(const char *" envz ", size_t " envz_len \ ", const char *" name ); - +.PP .BI "char *envz_get(const char *" envz ", size_t " envz_len \ ", const char *" name ); - +.PP .BI "error_t envz_merge(char **" envz ", size_t *" envz_len , .BI " const char *" envz2 ", size_t " envz2_len \ ", int " override ); - +.PP .BI "void envz_remove(char **" envz ", size_t *" envz_len \ ", const char *" name ); - +.PP .BI "void envz_strip(char **" envz ", size_t *" envz_len ); .fi .SH DESCRIPTION diff --git a/man3/erf.3 b/man3/erf.3 index f83b77173e..544eb2a28a 100644 --- a/man3/erf.3 +++ b/man3/erf.3 @@ -38,11 +38,11 @@ erf, erff, erfl, \- error function .SH SYNOPSIS .nf .B #include <math.h> - +.PP .BI "double erf(double " x ); .BI "float erff(float " x ); .BI "long double erfl(long double " x ); - +.PP .fi Link with \fI\-lm\fP. .PP diff --git a/man3/erfc.3 b/man3/erfc.3 index 3f6fd3ad3e..2d8558ffef 100644 --- a/man3/erfc.3 +++ b/man3/erfc.3 @@ -29,12 +29,12 @@ erfc, erfcf, erfcl \- complementary error function .SH SYNOPSIS .nf .B #include <math.h> - +.PP .BI "double erfc(double " x ); .BI "float erfcf(float " x ); .BI "long double erfcl(long double " x ); - .fi +.PP Link with \fI\-lm\fP. .PP .in -4n diff --git a/man3/error.3 b/man3/error.3 index 3cf540b0f4..660de39521 100644 --- a/man3/error.3 +++ b/man3/error.3 @@ -31,16 +31,16 @@ error_print_progname \- glibc error reporting functions .SH SYNOPSIS .nf .B #include <error.h> - +.PP .BI "void error(int " status ", int " errnum ", const char *" format ", ...);" - +.PP .BI "void error_at_line(int " status ", int " errnum ", const char *" filename , .BI " unsigned int " linenum ", const char *" format ", ...);" - +.PP .BI "extern unsigned int " error_message_count ; - +.PP .BI "extern int " error_one_per_line ; - +.PP .BI "extern void (*" error_print_progname ") (void);" .fi .SH DESCRIPTION diff --git a/man3/ferror.3 b/man3/ferror.3 index 41ef2f898b..b1892e150b 100644 --- a/man3/ferror.3 +++ b/man3/ferror.3 @@ -48,11 +48,11 @@ clearerr, feof, ferror, fileno \- check and reset stream status .B #include <stdio.h> .PP .BI "void clearerr(FILE *" stream ); - +.PP .BI "int feof(FILE *" stream ); - +.PP .BI "int ferror(FILE *" stream ); - +.PP .BI "int fileno(FILE *" stream ); .PP .in -4n diff --git a/man3/ffs.3 b/man3/ffs.3 index ce653fcca3..15ab23b4a2 100644 --- a/man3/ffs.3 +++ b/man3/ffs.3 @@ -38,7 +38,7 @@ ffs, ffsl, ffsll \- find first bit set in a word .B #include <strings.h> .PP .BI "int ffs(int " i ); - +.PP .B #include <string.h> .PP .BI "int ffsl(long int " i ); diff --git a/man3/fgetc.3 b/man3/fgetc.3 index 638c4c6412..8d6e2a5768 100644 --- a/man3/fgetc.3 +++ b/man3/fgetc.3 @@ -32,13 +32,13 @@ fgetc, fgets, getc, getchar, ungetc \- input of characters and strings .B #include <stdio.h> .PP .BI "int fgetc(FILE *" stream ); - +.PP .BI "char *fgets(char *" "s" ", int " "size" ", FILE *" "stream" ); - +.PP .BI "int getc(FILE *" stream ); - +.PP .B "int getchar(void);" - +.PP .BI "int ungetc(int " c ", FILE *" stream ); .fi .SH DESCRIPTION diff --git a/man3/fmemopen.3 b/man3/fmemopen.3 index bd26ae6bb5..e918b0e169 100644 --- a/man3/fmemopen.3 +++ b/man3/fmemopen.3 @@ -10,7 +10,7 @@ fmemopen \- open memory as stream .SH SYNOPSIS .nf .B #include <stdio.h> - +.PP .BI "FILE *fmemopen(void *"buf ", size_t "size ", const char *" mode ");" .fi .PP diff --git a/man3/fopen.3 b/man3/fopen.3 index d1db6dae86..36c251a9e2 100644 --- a/man3/fopen.3 +++ b/man3/fopen.3 @@ -49,9 +49,9 @@ fopen, fdopen, freopen \- stream open functions .B #include <stdio.h> .PP .BI "FILE *fopen(const char *" pathname ", const char *" mode ); - +.PP .BI "FILE *fdopen(int " fd ", const char *" mode ); - +.PP .BI "FILE *freopen(const char *" pathname ", const char *" mode ", FILE *" stream ); .fi .PP diff --git a/man3/fopencookie.3 b/man3/fopencookie.3 index 165b6b6d9a..cecc96e76c 100644 --- a/man3/fopencookie.3 +++ b/man3/fopencookie.3 @@ -30,7 +30,7 @@ fopencookie \- opening a custom stream .nf .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B #include <stdio.h> - +.PP .BI "FILE *fopencookie(void *" cookie ", const char *" mode , .BI " cookie_io_functions_t " io_funcs ); .fi diff --git a/man3/fseek.3 b/man3/fseek.3 index b5c147b509..ecde452328 100644 --- a/man3/fseek.3 +++ b/man3/fseek.3 @@ -46,13 +46,13 @@ fgetpos, fseek, fsetpos, ftell, rewind \- reposition a stream .B #include <stdio.h> .PP .BI "int fseek(FILE *" stream ", long " offset ", int " whence ); - +.PP .BI "long ftell(FILE *" stream ); - +.PP .BI "void rewind(FILE *" stream ); - +.PP .BI "int fgetpos(FILE *" stream ", fpos_t *" pos ); -.br +.PP .BI "int fsetpos(FILE *" stream ", const fpos_t *" pos ); .SH DESCRIPTION The diff --git a/man3/ftw.3 b/man3/ftw.3 index 9bfd4b1553..93980e85f4 100644 --- a/man3/ftw.3 +++ b/man3/ftw.3 @@ -44,7 +44,7 @@ ftw, nftw \- file tree walk .BI " int (*" fn ") (const char *" fpath ", const struct stat *" sb , .BI " int " typeflag ", struct FTW *" ftwbuf ), .BI " int " nopenfd ", int " flags ); - +.PP .B #include <ftw.h> .PP .BI "int ftw(const char *" dirpath , diff --git a/man3/futimes.3 b/man3/futimes.3 index e777c2b22e..db9a7f03e7 100644 --- a/man3/futimes.3 +++ b/man3/futimes.3 @@ -28,9 +28,9 @@ futimes, lutimes \- change file timestamps .SH SYNOPSIS .nf .B #include <sys/time.h> - +.PP .BI "int futimes(int " fd ", const struct timeval " tv [2]); - +.PP .BI "int lutimes(const char *" filename ", const struct timeval " tv [2]); .fi .PP diff --git a/man3/getdate.3 b/man3/getdate.3 index c37dc239f5..f483636865 100644 --- a/man3/getdate.3 +++ b/man3/getdate.3 @@ -36,7 +36,7 @@ getdate, getdate_r \- convert a date-plus-time string to broken-down time .BI "struct tm *getdate(const char *" string ); .PP .B "extern int getdate_err;" - +.PP .B "#include <time.h>" .PP .BI "int getdate_r(const char *" string ", struct tm *" res ); diff --git a/man3/getenv.3 b/man3/getenv.3 index a154e393e6..4200884fc6 100644 --- a/man3/getenv.3 +++ b/man3/getenv.3 @@ -38,7 +38,7 @@ getenv, secure_getenv \- get an environment variable .B #include <stdlib.h> .PP .BI "char *getenv(const char *" name ); - +.PP .BI "char *secure_getenv(const char *" name ); .fi .PP diff --git a/man3/getline.3 b/man3/getline.3 index 97c13e0e21..c32ef68ac9 100644 --- a/man3/getline.3 +++ b/man3/getline.3 @@ -31,7 +31,7 @@ getline, getdelim \- delimited string input .B #include <stdio.h> .PP .BI "ssize_t getline(char **" lineptr ", size_t *" n ", FILE *" stream ); - +.PP .BI "ssize_t getdelim(char **" lineptr ", size_t *" n ", int " delim \ ", FILE *" stream ); .fi diff --git a/man3/getlogin.3 b/man3/getlogin.3 index 08d9d38269..9020623274 100644 --- a/man3/getlogin.3 +++ b/man3/getlogin.3 @@ -34,7 +34,7 @@ getlogin, getlogin_r, cuserid \- get username .B "char *getlogin(void);" .br .BI "int getlogin_r(char *" buf ", size_t " bufsize ); - +.PP .B #include <stdio.h> .PP .BI "char *cuserid(char *" string ); diff --git a/man3/getrpcent.3 b/man3/getrpcent.3 index 3c860920f5..bb44b10044 100644 --- a/man3/getrpcent.3 +++ b/man3/getrpcent.3 @@ -12,15 +12,15 @@ RPC entry .SH SYNOPSIS .nf .B #include <netdb.h> - +.PP .BI "struct rpcent *getrpcent(void);" - +.PP .BI "struct rpcent *getrpcbyname(const char *" name ); - +.PP .BI "struct rpcent *getrpcbynumber(int " number ); - +.PP .BI "void setrpcent(int " stayopen ); - +.PP .BI "void endrpcent(void);" .fi .SH DESCRIPTION diff --git a/man3/getsubopt.3 b/man3/getsubopt.3 index e65e5f9bb9..a7992bf90a 100644 --- a/man3/getsubopt.3 +++ b/man3/getsubopt.3 @@ -27,7 +27,7 @@ getsubopt \- parse suboption arguments from a string .SH SYNOPSIS .B #include <stdlib.h> - +.PP .BI "int getsubopt(char **"optionp ", char * const *" tokens \ ", char **" valuep ); .PP diff --git a/man3/getutmp.3 b/man3/getutmp.3 index d534179d7c..a50477fa38 100644 --- a/man3/getutmp.3 +++ b/man3/getutmp.3 @@ -30,7 +30,7 @@ getutmp, getutmpx \- copy utmp structure to utmpx, and vice versa .nf .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B #include <utmpx.h> - +.PP .BI " void getutmp(const struct utmpx *" ux ", struct utmp *" u ); .BI " void getutmpx(const struct utmp *" u ", struct utmpx *" ux ); .fi diff --git a/man3/getw.3 b/man3/getw.3 index 08f751f600..67751a04d1 100644 --- a/man3/getw.3 +++ b/man3/getw.3 @@ -30,7 +30,7 @@ getw, putw \- input and output of words (ints) .B #include <stdio.h> .PP .BI "int getw(FILE *" stream ); - +.PP .BI "int putw(int " w ", FILE *" stream ); .fi .PP diff --git a/man3/gnu_get_libc_version.3 b/man3/gnu_get_libc_version.3 index e59d8423ed..df8534349a 100644 --- a/man3/gnu_get_libc_version.3 +++ b/man3/gnu_get_libc_version.3 @@ -29,7 +29,7 @@ gnu_get_libc_version, gnu_get_libc_release \- get glibc version and release .SH SYNOPSIS .nf .B #include <gnu/libc-version.h> - +.PP .B const char *gnu_get_libc_version(void); .B const char *gnu_get_libc_release(void); .fi diff --git a/man3/inet_net_pton.3 b/man3/inet_net_pton.3 index 85bbebd8ad..37758414b0 100644 --- a/man3/inet_net_pton.3 +++ b/man3/inet_net_pton.3 @@ -29,7 +29,7 @@ inet_net_pton, inet_net_ntop \- Internet network number conversion .SH SYNOPSIS .nf .B #include <arpa/inet.h> - +.PP .BI "int inet_net_pton(int " af ", const char *" pres , .BI " void *" netp ", size_t " nsize ); diff --git a/man3/isalpha.3 b/man3/isalpha.3 index 5a9c965e25..661d4a5be5 100644 --- a/man3/isalpha.3 +++ b/man3/isalpha.3 @@ -50,10 +50,10 @@ isprint_l, ispunct_l, isspace_l, isupper_l, isxdigit_l .BI "int isspace(int " c ); .BI "int isupper(int " c ); .BI "int isxdigit(int " c ); - +.PP .BI "int isascii(int " c ); .BI "int isblank(int " c ); - +.PP .BI "int isalnum_l(int " c ", locale_t " locale ); .BI "int isalpha_l(int " c ", locale_t " locale ); .BI "int isblank_l(int " c ", locale_t " locale ); @@ -66,7 +66,7 @@ isprint_l, ispunct_l, isspace_l, isupper_l, isxdigit_l .BI "int isspace_l(int " c ", locale_t " locale ); .BI "int isupper_l(int " c ", locale_t " locale ); .BI "int isxdigit_l(int " c ", locale_t " locale ); - +.PP .BI "int isascii_l(int " c ", locale_t " locale ); .fi .PP diff --git a/man3/lio_listio.3 b/man3/lio_listio.3 index 80abf73d84..26fff2776f 100644 --- a/man3/lio_listio.3 +++ b/man3/lio_listio.3 @@ -27,10 +27,10 @@ lio_listio \- initiate a list of I/O requests .SH SYNOPSIS .nf .B "#include <aio.h>" - +.PP .BI "int lio_listio(int " mode ", struct aiocb *const " aiocb_list [], .BI " int " nitems ", struct sigevent *" sevp ); - +.PP Link with \fI\-lrt\fP. .fi .SH DESCRIPTION diff --git a/man3/makedev.3 b/man3/makedev.3 index 32e6225683..79f335595b 100644 --- a/man3/makedev.3 +++ b/man3/makedev.3 @@ -29,9 +29,9 @@ makedev, major, minor \- manage a device number .SH SYNOPSIS .nf .B #include <sys/sysmacros.h> - +.PP .BI "dev_t makedev(unsigned int " maj ", unsigned int " min ); - +.PP .BI "unsigned int major(dev_t " dev ); .BI "unsigned int minor(dev_t " dev ); .fi diff --git a/man3/malloc_get_state.3 b/man3/malloc_get_state.3 index 910e7b9523..4797952cb2 100644 --- a/man3/malloc_get_state.3 +++ b/man3/malloc_get_state.3 @@ -30,7 +30,7 @@ malloc_get_state, malloc_set_state \- record and restore state of malloc impleme .B #include <malloc.h> .PP .BI "void* malloc_get_state(void);" - +.PP .BI "int malloc_set_state(void *" state ); .fi .SH DESCRIPTION diff --git a/man3/malloc_stats.3 b/man3/malloc_stats.3 index f2338d1c04..62cd0aebcb 100644 --- a/man3/malloc_stats.3 +++ b/man3/malloc_stats.3 @@ -28,7 +28,7 @@ malloc_stats \- print memory allocation statistics .SH SYNOPSIS .B #include <malloc.h> - +.PP .B void malloc_stats(void); .SH DESCRIPTION The diff --git a/man3/malloc_trim.3 b/man3/malloc_trim.3 index 1443bd3616..6163c4ba1d 100644 --- a/man3/malloc_trim.3 +++ b/man3/malloc_trim.3 @@ -28,7 +28,7 @@ malloc_trim \- release free memory from the top of the heap .SH SYNOPSIS .B #include <malloc.h> - +.PP .BI "int malloc_trim(size_t " pad ); .SH DESCRIPTION The diff --git a/man3/malloc_usable_size.3 b/man3/malloc_usable_size.3 index 5c1c10aa71..d4e0d42ee1 100644 --- a/man3/malloc_usable_size.3 +++ b/man3/malloc_usable_size.3 @@ -27,7 +27,7 @@ malloc_usable_size \- obtain size of block of memory allocated from heap .SH SYNOPSIS .B #include <malloc.h> - +.PP .BI "size_t malloc_usable_size (void *" ptr ); .SH DESCRIPTION The diff --git a/man3/matherr.3 b/man3/matherr.3 index 006c7ef1c7..2baf30014c 100644 --- a/man3/matherr.3 +++ b/man3/matherr.3 @@ -39,7 +39,7 @@ matherr \- SVID math library exception handling .in -4n Feature Test Macro Requirements for glibc (see .BR feature_test_macros (7)): - +.PP .in .ad l .BR significand (), diff --git a/man3/memchr.3 b/man3/memchr.3 index a3ac000943..a2705678e5 100644 --- a/man3/memchr.3 +++ b/man3/memchr.3 @@ -35,11 +35,11 @@ memchr, memrchr, rawmemchr \- scan memory for a character .SH SYNOPSIS .nf .B #include <string.h> - +.PP .BI "void *memchr(const void *" s ", int " c ", size_t " n ); - +.PP .BI "void *memrchr(const void *" s ", int " c ", size_t " n ); - +.PP .BI "void *rawmemchr(const void *" s ", int " c ); .fi .PP diff --git a/man3/nextup.3 b/man3/nextup.3 index e9d43ab697..701a957feb 100644 --- a/man3/nextup.3 +++ b/man3/nextup.3 @@ -30,15 +30,15 @@ return next floating-point number toward positive/negative infinity .nf .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B #include <math.h> - +.PP .BI "double nextup(double " x ); .BI "float nextupf(float " x ); .BI "long double nextupl(long double " x ); - +.PP .BI "double nextdown(double " x ); .BI "float nextdownf(float " x ); .BI "long double nextdownl(long double " x ); - +.PP Link with \fI\-lm\fP. .SH DESCRIPTION The diff --git a/man3/ntp_gettime.3 b/man3/ntp_gettime.3 index ea86db905d..3a8a908276 100644 --- a/man3/ntp_gettime.3 +++ b/man3/ntp_gettime.3 @@ -28,9 +28,9 @@ ntp_gettime, ntp_gettimex \- get time parameters (NTP daemon interface) .SH SYNOPSIS .nf .B #include <sys/timex.h> - +.PP .BI "int ntp_gettime(struct ntptimeval *" ntv ); - +.PP .BI "int ntp_gettimex(struct ntptimeval *" ntv ); .fi .SH DESCRIPTION diff --git a/man3/posix_madvise.3 b/man3/posix_madvise.3 index 93a8718b6e..1629a02d66 100644 --- a/man3/posix_madvise.3 +++ b/man3/posix_madvise.3 @@ -23,10 +23,10 @@ posix_madvise \- give advice about patterns of memory usage .SH SYNOPSIS .nf .B #include <sys/mman.h> - +.PP .BI "int posix_madvise(void *" addr ", size_t " len ", int " advice ); .fi - +.PP .in -4n Feature Test Macro Requirements for glibc (see .BR feature_test_macros (7)): diff --git a/man3/program_invocation_name.3 b/man3/program_invocation_name.3 index 29fbecceb0..521f1c1902 100644 --- a/man3/program_invocation_name.3 +++ b/man3/program_invocation_name.3 @@ -29,7 +29,7 @@ obtain name used to invoke calling program .nf .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B #include <errno.h> - +.PP .BI "extern char *" program_invocation_name ; .BI "extern char *" program_invocation_short_name ; .fi diff --git a/man3/pthread_atfork.3 b/man3/pthread_atfork.3 index 9af9cbe8c1..ed0b85d7f5 100644 --- a/man3/pthread_atfork.3 +++ b/man3/pthread_atfork.3 @@ -29,7 +29,7 @@ pthread_atfork \- register fork handlers .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_atfork(void (*" prepare ")(void), void (*" parent ")(void)," .BI " void (*" child ")(void));" .fi diff --git a/man3/pthread_attr_setaffinity_np.3 b/man3/pthread_attr_setaffinity_np.3 index 8d86c777fc..a39e96efb4 100644 --- a/man3/pthread_attr_setaffinity_np.3 +++ b/man3/pthread_attr_setaffinity_np.3 @@ -31,7 +31,7 @@ CPU affinity attribute in thread attributes object .nf .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B #include <pthread.h> - +.PP .BI "int pthread_attr_setaffinity_np(pthread_attr_t *" attr , .BI " size_t " cpusetsize ", const cpu_set_t *" cpuset ); .BI "int pthread_attr_getaffinity_np(const pthread_attr_t *" attr , diff --git a/man3/pthread_attr_setdetachstate.3 b/man3/pthread_attr_setdetachstate.3 index 045205ad75..a31c662505 100644 --- a/man3/pthread_attr_setdetachstate.3 +++ b/man3/pthread_attr_setdetachstate.3 @@ -30,7 +30,7 @@ set/get detach state attribute in thread attributes object .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_attr_setdetachstate(pthread_attr_t *" attr \ ", int " detachstate ); .BI "int pthread_attr_getdetachstate(const pthread_attr_t *" attr \ diff --git a/man3/pthread_attr_setguardsize.3 b/man3/pthread_attr_setguardsize.3 index fee157a0d5..b6af3f2591 100644 --- a/man3/pthread_attr_setguardsize.3 +++ b/man3/pthread_attr_setguardsize.3 @@ -30,7 +30,7 @@ attribute in thread attributes object .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_attr_setguardsize(pthread_attr_t *" attr \ ", size_t " guardsize ); .BI "int pthread_attr_getguardsize(const pthread_attr_t *" attr \ diff --git a/man3/pthread_attr_setinheritsched.3 b/man3/pthread_attr_setinheritsched.3 index 3b482a8309..86a5af809d 100644 --- a/man3/pthread_attr_setinheritsched.3 +++ b/man3/pthread_attr_setinheritsched.3 @@ -30,7 +30,7 @@ inherit-scheduler attribute in thread attributes object .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_attr_setinheritsched(pthread_attr_t *" attr , .BI " int " inheritsched ); .BI "int pthread_attr_getinheritsched(const pthread_attr_t *" attr , diff --git a/man3/pthread_attr_setschedparam.3 b/man3/pthread_attr_setschedparam.3 index 013e07d400..394c32473d 100644 --- a/man3/pthread_attr_setschedparam.3 +++ b/man3/pthread_attr_setschedparam.3 @@ -30,7 +30,7 @@ scheduling parameter attributes in thread attributes object .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_attr_setschedparam(pthread_attr_t *" attr , .BI " const struct sched_param *" param ); .BI "int pthread_attr_getschedparam(const pthread_attr_t *" attr , diff --git a/man3/pthread_attr_setschedpolicy.3 b/man3/pthread_attr_setschedpolicy.3 index 065b122c0b..fda061d098 100644 --- a/man3/pthread_attr_setschedpolicy.3 +++ b/man3/pthread_attr_setschedpolicy.3 @@ -30,7 +30,7 @@ scheduling policy attribute in thread attributes object .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_attr_setschedpolicy(pthread_attr_t *" attr \ ", int " policy ); .BI "int pthread_attr_getschedpolicy(const pthread_attr_t *" attr \ diff --git a/man3/pthread_attr_setscope.3 b/man3/pthread_attr_setscope.3 index 5d0c1409bd..4292145bbc 100644 --- a/man3/pthread_attr_setscope.3 +++ b/man3/pthread_attr_setscope.3 @@ -30,7 +30,7 @@ attribute in thread attributes object .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_attr_setscope(pthread_attr_t *" attr \ ", int " scope ); .BI "int pthread_attr_getscope(const pthread_attr_t *" attr \ diff --git a/man3/pthread_attr_setstack.3 b/man3/pthread_attr_setstack.3 index a0810f65e9..b980225a61 100644 --- a/man3/pthread_attr_setstack.3 +++ b/man3/pthread_attr_setstack.3 @@ -30,7 +30,7 @@ attributes in thread attributes object .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_attr_setstack(pthread_attr_t *" attr , .BI " void *" stackaddr ", size_t " stacksize ); .BI "int pthread_attr_getstack(const pthread_attr_t *" attr , diff --git a/man3/pthread_attr_setstackaddr.3 b/man3/pthread_attr_setstackaddr.3 index c375acffcb..40af17444d 100644 --- a/man3/pthread_attr_setstackaddr.3 +++ b/man3/pthread_attr_setstackaddr.3 @@ -30,7 +30,7 @@ set/get stack address attribute in thread attributes object .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_attr_setstackaddr(pthread_attr_t *" attr \ ", void *" stackaddr ); .BI "int pthread_attr_getstackaddr(const pthread_attr_t *" attr \ diff --git a/man3/pthread_attr_setstacksize.3 b/man3/pthread_attr_setstacksize.3 index 503c35d8c1..d0f916e27e 100644 --- a/man3/pthread_attr_setstacksize.3 +++ b/man3/pthread_attr_setstacksize.3 @@ -30,7 +30,7 @@ attribute in thread attributes object .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_attr_setstacksize(pthread_attr_t *" attr \ ", size_t " stacksize ); .BI "int pthread_attr_getstacksize(const pthread_attr_t *" attr \ diff --git a/man3/pthread_cleanup_push_defer_np.3 b/man3/pthread_cleanup_push_defer_np.3 index 1d01837356..4affcd41b5 100644 --- a/man3/pthread_cleanup_push_defer_np.3 +++ b/man3/pthread_cleanup_push_defer_np.3 @@ -30,7 +30,7 @@ thread cancellation clean-up handlers while saving cancelability type .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "void pthread_cleanup_push_defer_np(void (*" routine ")(void *)," .BI " void *" arg ); .BI "void pthread_cleanup_pop_restore_np(int " execute ); diff --git a/man3/pthread_detach.3 b/man3/pthread_detach.3 index 7b152dc80c..3509762f36 100644 --- a/man3/pthread_detach.3 +++ b/man3/pthread_detach.3 @@ -29,7 +29,7 @@ pthread_detach \- detach a thread .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_detach(pthread_t " thread ); .fi .PP diff --git a/man3/pthread_equal.3 b/man3/pthread_equal.3 index c1fce18fd1..08e5b1e2d0 100644 --- a/man3/pthread_equal.3 +++ b/man3/pthread_equal.3 @@ -29,7 +29,7 @@ pthread_equal \- compare thread IDs .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_equal(pthread_t " t1 ", pthread_t " t2 ); .PP Compile and link with \fI\-pthread\fP. diff --git a/man3/pthread_exit.3 b/man3/pthread_exit.3 index 635c20fb69..0d9c6ff9a9 100644 --- a/man3/pthread_exit.3 +++ b/man3/pthread_exit.3 @@ -29,7 +29,7 @@ pthread_exit \- terminate calling thread .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "void pthread_exit(void *" retval ); .PP Compile and link with \fI\-pthread\fP. diff --git a/man3/pthread_join.3 b/man3/pthread_join.3 index 27a154d4d8..eb8e315df3 100644 --- a/man3/pthread_join.3 +++ b/man3/pthread_join.3 @@ -29,7 +29,7 @@ pthread_join \- join with a terminated thread .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_join(pthread_t " thread ", void **" retval ); .fi .PP diff --git a/man3/pthread_kill.3 b/man3/pthread_kill.3 index 247b534a61..1f1ae90679 100644 --- a/man3/pthread_kill.3 +++ b/man3/pthread_kill.3 @@ -29,7 +29,7 @@ pthread_kill \- send a signal to a thread .SH SYNOPSIS .nf .B #include <signal.h> - +.PP .BI "int pthread_kill(pthread_t " thread ", int " sig ); .fi .PP diff --git a/man3/pthread_kill_other_threads_np.3 b/man3/pthread_kill_other_threads_np.3 index 7aed1f6e4e..d94a34cbe1 100644 --- a/man3/pthread_kill_other_threads_np.3 +++ b/man3/pthread_kill_other_threads_np.3 @@ -29,7 +29,7 @@ pthread_kill_other_threads_np \- terminate all other threads in process .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .B void pthread_kill_other_threads_np(void); .fi .SH DESCRIPTION diff --git a/man3/pthread_rwlockattr_setkind_np.3 b/man3/pthread_rwlockattr_setkind_np.3 index d1e99ff99c..227e0af1c7 100644 --- a/man3/pthread_rwlockattr_setkind_np.3 +++ b/man3/pthread_rwlockattr_setkind_np.3 @@ -29,7 +29,7 @@ the read-write lock kind of the thread read-write lock attribute object .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_rwlockattr_setkind_np(pthread_rwlockattr_t *" attr , .BI " int " pref ); .BI "int pthread_rwlockattr_getkind_np(const pthread_rwlockattr_t *" attr , diff --git a/man3/pthread_self.3 b/man3/pthread_self.3 index cb318fe47e..1477fa76c5 100644 --- a/man3/pthread_self.3 +++ b/man3/pthread_self.3 @@ -29,7 +29,7 @@ pthread_self \- obtain ID of the calling thread .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .B pthread_t pthread_self(void); .PP Compile and link with \fI\-pthread\fP. diff --git a/man3/pthread_setcancelstate.3 b/man3/pthread_setcancelstate.3 index 791c46a5ce..5b1d379b4e 100644 --- a/man3/pthread_setcancelstate.3 +++ b/man3/pthread_setcancelstate.3 @@ -30,7 +30,7 @@ set cancelability state and type .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_setcancelstate(int " state ", int *" oldstate ); .BI "int pthread_setcanceltype(int " type ", int *" oldtype ); .PP diff --git a/man3/pthread_setconcurrency.3 b/man3/pthread_setconcurrency.3 index c3171375e3..173632588b 100644 --- a/man3/pthread_setconcurrency.3 +++ b/man3/pthread_setconcurrency.3 @@ -29,7 +29,7 @@ the concurrency level .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_setconcurrency(int " new_level ); .BI "int pthread_getconcurrency(void); .PP diff --git a/man3/pthread_setschedprio.3 b/man3/pthread_setschedprio.3 index ac4b876839..c037d96592 100644 --- a/man3/pthread_setschedprio.3 +++ b/man3/pthread_setschedprio.3 @@ -29,7 +29,7 @@ pthread_setschedprio \- set scheduling priority of a thread .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .BI "int pthread_setschedprio(pthread_t " thread ", int " prio ); .PP Compile and link with \fI\-pthread\fP. diff --git a/man3/pthread_testcancel.3 b/man3/pthread_testcancel.3 index 13c228df2d..7e5a366309 100644 --- a/man3/pthread_testcancel.3 +++ b/man3/pthread_testcancel.3 @@ -29,7 +29,7 @@ pthread_testcancel \- request delivery of any pending cancellation request .SH SYNOPSIS .nf .B #include <pthread.h> - +.PP .B void pthread_testcancel(void); .PP Compile and link with \fI\-pthread\fP. diff --git a/man3/pthread_tryjoin_np.3 b/man3/pthread_tryjoin_np.3 index d8f27ad418..01bcb429d8 100644 --- a/man3/pthread_tryjoin_np.3 +++ b/man3/pthread_tryjoin_np.3 @@ -31,9 +31,9 @@ terminated thread .nf .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B #include <pthread.h> - +.PP .BI "int pthread_tryjoin_np(pthread_t " thread ", void **" retval ); - +.PP .BI "int pthread_timedjoin_np(pthread_t " thread ", void **" retval , .BI " const struct timespec *" abstime ); .fi diff --git a/man3/pthread_yield.3 b/man3/pthread_yield.3 index 194c001cf7..317aec1efb 100644 --- a/man3/pthread_yield.3 +++ b/man3/pthread_yield.3 @@ -29,7 +29,7 @@ pthread_yield \- yield the processor .nf .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B #include <pthread.h> - +.PP .B int pthread_yield(void); .fi .PP diff --git a/man3/puts.3 b/man3/puts.3 index b9615a3093..2f039a4372 100644 --- a/man3/puts.3 +++ b/man3/puts.3 @@ -31,13 +31,13 @@ fputc, fputs, putc, putchar, puts \- output of characters and strings .B #include <stdio.h> .PP .BI "int fputc(int " c ", FILE *" stream ); - +.PP .BI "int fputs(const char *" "s" ", FILE *" "stream" ); - +.PP .BI "int putc(int " c ", FILE *" stream ); - +.PP .BI "int putchar(int " c ); - +.PP .BI "int puts(const char *" "s" ); .fi .SH DESCRIPTION diff --git a/man3/random.3 b/man3/random.3 index e69c3168f5..48ea1d3c1f 100644 --- a/man3/random.3 +++ b/man3/random.3 @@ -38,11 +38,11 @@ random, srandom, initstate, setstate \- random number generator .B #include <stdlib.h> .PP .B long int random(void); - +.PP .BI "void srandom(unsigned int " seed ); - +.PP .BI "char *initstate(unsigned int " seed ", char *" state ", size_t " n ); -.br +.PP .BI "char *setstate(char *" state ); .fi .PP diff --git a/man3/random_r.3 b/man3/random_r.3 index 6afb19bd1d..1f246a8611 100644 --- a/man3/random_r.3 +++ b/man3/random_r.3 @@ -32,12 +32,12 @@ random number generator .B #include <stdlib.h> .PP .BI "int random_r(struct random_data *" buf ", int32_t *" result ); - +.PP .BI "int srandom_r(unsigned int " seed ", struct random_data *" buf ); - +.PP .BI "int initstate_r(unsigned int " seed ", char *" statebuf , .BI " size_t " statelen ", struct random_data *" buf ); -.br +.PP .BI "int setstate_r(char *" statebuf ", struct random_data *" buf ); .fi .PP diff --git a/man3/rpc.3 b/man3/rpc.3 index c5cf1124b3..cc46eef0e8 100644 --- a/man3/rpc.3 +++ b/man3/rpc.3 @@ -28,13 +28,13 @@ To take use of these routines, include the header file .IR "<rpc/rpc.h>" . The prototypes below make use of the following types: +.PP .in +4n .nf - .BI "typedef int " bool_t ; - +.PP .BI "typedef bool_t (*" xdrproc_t ") (XDR *, void *, ...);" - +.PP .BI "typedef bool_t (*" resultproc_t ") (caddr_t " resp , .BI " struct sockaddr_in *" raddr ); .fi diff --git a/man3/sched_getcpu.3 b/man3/sched_getcpu.3 index 9fa53d4598..c5e826a1f7 100644 --- a/man3/sched_getcpu.3 +++ b/man3/sched_getcpu.3 @@ -29,7 +29,7 @@ sched_getcpu \- determine CPU on which the calling thread is running .SH SYNOPSIS .nf .B #include <sched.h> - +.PP .B int sched_getcpu(void); .fi .PP diff --git a/man3/setnetgrent.3 b/man3/setnetgrent.3 index 03a8bfe662..353e903126 100644 --- a/man3/setnetgrent.3 +++ b/man3/setnetgrent.3 @@ -14,16 +14,16 @@ handle network group entries .SH SYNOPSIS .nf .B #include <netdb.h> - +.PP .BI "int setnetgrent(const char *" netgroup ); - +.PP .B "void endnetgrent(void);" - +.PP .BI "int getnetgrent(char **" host ", char **" user ", char **" domain ); - +.PP .BI "int getnetgrent_r(char **" host ", char **" user "," .BI " char **" domain ", char *" buf ", size_t " buflen ); - +.PP .BI "int innetgr(const char *" netgroup ", const char *" host "," .BI " const char *" user ", const char *" domain ); .fi diff --git a/man3/sigwait.3 b/man3/sigwait.3 index 7894983c7a..17a5c57a9c 100644 --- a/man3/sigwait.3 +++ b/man3/sigwait.3 @@ -29,7 +29,7 @@ sigwait \- wait for a signal .SH SYNOPSIS .nf .B #include <signal.h> - +.PP .BI " int sigwait(const sigset_t *" set ", int *" sig ); .fi .PP diff --git a/man3/stdin.3 b/man3/stdin.3 index 226ef05610..ee72e45910 100644 --- a/man3/stdin.3 +++ b/man3/stdin.3 @@ -16,7 +16,7 @@ stdin, stdout, stderr \- standard I/O streams .SH SYNOPSIS .nf .B #include <stdio.h> - +.PP .BI "extern FILE *" stdin ; .BI "extern FILE *" stdout ; .BI "extern FILE *" stderr ; diff --git a/man3/strerror.3 b/man3/strerror.3 index 3364aad5d2..6692b824e5 100644 --- a/man3/strerror.3 +++ b/man3/strerror.3 @@ -50,7 +50,7 @@ strerror, strerror_r, strerror_l \- return string describing error number .PP .BI "char *strerror_r(int " errnum ", char *" buf ", size_t " buflen ); /* GNU-specific */ - +.PP .BI "char *strerror_l(int " errnum ", locale_t " locale ); .fi .PP diff --git a/man3/strfmon.3 b/man3/strfmon.3 index f0492ec135..ea79b4f3c7 100644 --- a/man3/strfmon.3 +++ b/man3/strfmon.3 @@ -30,7 +30,7 @@ strfmon, strfmon_l \- convert monetary value to a string .PP .BI "ssize_t strfmon(char *" s ", size_t " max ", const char *" format , .B "...);" - +.PP .BI "ssize_t strfmon_l(char *" s ", size_t " max ", locale_t " locale ", .B const char *" format , "...);" .fi diff --git a/man3/timeradd.3 b/man3/timeradd.3 index f34c5108d8..e8662d8401 100644 --- a/man3/timeradd.3 +++ b/man3/timeradd.3 @@ -30,17 +30,17 @@ timeradd, timersub, timercmp, timerclear, timerisset \- timeval operations .SH SYNOPSIS .nf .B #include <sys/time.h> - +.PP .BI "void timeradd(struct timeval *" a ", struct timeval *" b , .BI " struct timeval *" res ); - +.PP .BI "void timersub(struct timeval *" a ", struct timeval *" b , .BI " struct timeval *" res ); - +.PP .BI "void timerclear(struct timeval *" tvp ); - +.PP .BI "int timerisset(struct timeval *" tvp ); - +.PP .BI "int timercmp(struct timeval *" a ", struct timeval *" b ", " CMP ); .fi .PP diff --git a/man3/tmpnam.3 b/man3/tmpnam.3 index 36130afc6c..3ae06889ff 100644 --- a/man3/tmpnam.3 +++ b/man3/tmpnam.3 @@ -30,7 +30,7 @@ tmpnam, tmpnam_r \- create a name for a temporary file .SH SYNOPSIS .nf .B #include <stdio.h> - +.PP .BI "char *tmpnam(char *" s ); .BI "char *tmpnam_r(char *" s ); .fi diff --git a/man3/toupper.3 b/man3/toupper.3 index 23538acd17..3bcd498d04 100644 --- a/man3/toupper.3 +++ b/man3/toupper.3 @@ -35,7 +35,7 @@ toupper, tolower, toupper_l, tolower_l \- convert uppercase or lowercase .BI "int toupper(int " "c" ); .br .BI "int tolower(int " "c" ); - +.PP .BI "int toupper_l(int " c ", locale_t " locale ); .BI "int tolower_l(int " c ", locale_t " locale ); .fi diff --git a/man3/towlower.3 b/man3/towlower.3 index 393a35c8eb..576712d638 100644 --- a/man3/towlower.3 +++ b/man3/towlower.3 @@ -22,7 +22,7 @@ towlower, towlower_l \- convert a wide character to lowercase .B #include <wctype.h> .PP .BI "wint_t towlower(wint_t " wc ); - +.PP .BI "wint_t towlower_l(wint_t " wc ", locale_t " locale ); .fi .PP diff --git a/man3/towupper.3 b/man3/towupper.3 index 2f628c7a51..8acf5fe96c 100644 --- a/man3/towupper.3 +++ b/man3/towupper.3 @@ -22,7 +22,7 @@ towupper, towupper_l \- convert a wide character to uppercase .B #include <wctype.h> .PP .BI "wint_t towupper(wint_t " wc ); - +.PP .BI "wint_t towupper_l(wint_t " wc ", locale_t " locale ); .fi .PP diff --git a/man3/ttyname.3 b/man3/ttyname.3 index e772ae0361..7414843722 100644 --- a/man3/ttyname.3 +++ b/man3/ttyname.3 @@ -32,7 +32,7 @@ ttyname, ttyname_r \- return name of a terminal .B #include <unistd.h> .PP .BI "char *ttyname(int " fd ); - +.PP .BI "int ttyname_r(int " fd ", char *" buf ", size_t " buflen ); .fi .SH DESCRIPTION diff --git a/man3/uselocale.3 b/man3/uselocale.3 index dd43b4957f..c19ff94016 100644 --- a/man3/uselocale.3 +++ b/man3/uselocale.3 @@ -29,7 +29,7 @@ uselocale \- set/get the locale for the calling thread .SH SYNOPSIS .nf .B #include <locale.h> - +.PP .BI "locale_t uselocale(locale_t " newloc ); .fi .PP diff --git a/man3/xdr.3 b/man3/xdr.3 index 703cd1c08b..f7c03c284a 100644 --- a/man3/xdr.3 +++ b/man3/xdr.3 @@ -17,15 +17,15 @@ These routines allow C programmers to describe arbitrary data structures in a machine-independent fashion. Data for remote procedure calls are transmitted using these routines. - +.PP The prototypes below are declared in .I <rpc/xdr.h> and make use of the following types: +.PP .in +4n .nf - .BI "typedef int " bool_t ; - +.PP .BI "typedef bool_t (*" xdrproc_t ") (XDR *, void *,...);" .fi .in |
