diff options
Diffstat (limited to 'man3')
| -rw-r--r-- | man3/argz_add.3 | 2 | ||||
| -rw-r--r-- | man3/confstr.3 | 1 | ||||
| -rw-r--r-- | man3/envz_add.3 | 1 | ||||
| -rw-r--r-- | man3/getline.3 | 4 | ||||
| -rw-r--r-- | man3/getpwnam.3 | 1 | ||||
| -rw-r--r-- | man3/gets.3 | 1 | ||||
| -rw-r--r-- | man3/getw.3 | 1 | ||||
| -rw-r--r-- | man3/inet_ntop.3 | 1 | ||||
| -rw-r--r-- | man3/inet_pton.3 | 3 | ||||
| -rw-r--r-- | man3/offsetof.3 | 4 |
10 files changed, 13 insertions, 6 deletions
diff --git a/man3/argz_add.3 b/man3/argz_add.3 index 98a89c0f52..b4e65146d3 100644 --- a/man3/argz_add.3 +++ b/man3/argz_add.3 @@ -10,7 +10,6 @@ argz_create_sep, argz_delete, argz_extract, argz_insert, argz_next, argz_replace, argz_stringify \- functions to handle an argz list .SH SYNOPSIS .nf -.sp .B "#include <argz.h>" .sp .BI "error_t argz_add(char **" argz ", size_t *" argz_len \ @@ -50,6 +49,7 @@ argz_next, argz_replace, argz_stringify \- functions to handle an argz list .BI "const char *" with ", unsigned int *" replace_count ); .sp .BI "void argz_stringify(char *" argz ", size_t " len ", int " sep ); +.fi .SH DESCRIPTION These functions are glibc-specific. .LP diff --git a/man3/confstr.3 b/man3/confstr.3 index 788556ee03..43cdddc0d5 100644 --- a/man3/confstr.3 +++ b/man3/confstr.3 @@ -140,6 +140,7 @@ if (pathbuf == NULL) abort(); confstr(_CS_PATH, pathbuf, n); .in +.fi .SH "SEE ALSO" .BR sh (1), .BR exec (3), diff --git a/man3/envz_add.3 b/man3/envz_add.3 index b6c0ba7982..5c584e3270 100644 --- a/man3/envz_add.3 +++ b/man3/envz_add.3 @@ -30,6 +30,7 @@ envz_remove, envz_strip \- environment string support ", const char *" name ); .sp .BI "void envz_strip(char **" envz ", size_t *" envz_len ); +.fi .SH DESCRIPTION These functions are glibc-specific. .LP diff --git a/man3/getline.3 b/man3/getline.3 index 8b97782471..5e641116d6 100644 --- a/man3/getline.3 +++ b/man3/getline.3 @@ -31,7 +31,9 @@ getline, getdelim \- delimited string input .sp .BI "ssize_t getline(char **" lineptr ", size_t *" n ", FILE *" stream ); -.BI "ssize_t getdelim(char **" lineptr ", size_t *" n ", int " delim ", FILE *" stream ); +.BI "ssize_t getdelim(char **" lineptr ", size_t *" n ", int " delim \ +", FILE *" stream ); +.fi .SH DESCRIPTION .BR getline () reads an entire line from \fIstream\fP, diff --git a/man3/getpwnam.3 b/man3/getpwnam.3 index be98ec3677..a53762139e 100644 --- a/man3/getpwnam.3 +++ b/man3/getpwnam.3 @@ -184,7 +184,6 @@ Insufficient buffer space supplied. .TP .I /etc/passwd local password database file -.fi .SH "CONFORMING TO" SVr4, 4.3BSD, POSIX.1-2001 .SH NOTES diff --git a/man3/gets.3 b/man3/gets.3 index a802cc1056..21526e53df 100644 --- a/man3/gets.3 +++ b/man3/gets.3 @@ -40,6 +40,7 @@ fgetc, fgets, getc, getchar, gets, ungetc \- input of characters and strings .BI "char *gets(char *" "s" ); .BI "int ungetc(int " c ", FILE *" stream ); +.fi .SH DESCRIPTION .BR fgetc () reads the next character from diff --git a/man3/getw.3 b/man3/getw.3 index 26e28baf77..dfcaca469d 100644 --- a/man3/getw.3 +++ b/man3/getw.3 @@ -30,6 +30,7 @@ getw, putw \- input and output of words (ints) .BI "int getw(FILE *" stream ); .BI "int putw(int " w ", FILE *" stream ); +.fi .SH DESCRIPTION .BR getw () reads a word (that is, an \fIint\fP) from \fIstream\fP. diff --git a/man3/inet_ntop.3 b/man3/inet_ntop.3 index 5e544dcee2..d86909a722 100644 --- a/man3/inet_ntop.3 +++ b/man3/inet_ntop.3 @@ -32,6 +32,7 @@ inet_ntop \- Parse network address structures .sp .BI "const char *inet_ntop(int " "af" ", const void *" "src" , .BI " char *" "dst" ", socklen_t " "cnt" ); +.fi .SH DESCRIPTION This function converts the network address structure .I src diff --git a/man3/inet_pton.3 b/man3/inet_pton.3 index 1eda2884fa..33216f789a 100644 --- a/man3/inet_pton.3 +++ b/man3/inet_pton.3 @@ -29,8 +29,9 @@ inet_pton \- Create a network address structure .B #include <sys/types.h> .B #include <sys/socket.h> .B #include <arpa/inet.h> -.sp + .BI "int inet_pton(int " "af" ", const char *" "src" ", void *" "dst" ); +.fi .SH DESCRIPTION This function converts the character string .I src diff --git a/man3/offsetof.3 b/man3/offsetof.3 index b07a5a6db2..24fb3efa2d 100644 --- a/man3/offsetof.3 +++ b/man3/offsetof.3 @@ -58,13 +58,13 @@ C89, C99, POSIX.1-2001. On a Linux/x86 system, when compiled using the default .BR gcc (1) options, the program below produces the following output: -.fi +.nf $ ./a.out offsets: i=0; c=4; d=8 a=16 sizeof(struct s)=16 -.nf +.fi .nf #include <stddef.h> #include <stdio.h> |
