diff options
-rw-r--r-- | src/lib/libc/stdlib/div.3 | 4 | ||||
-rw-r--r-- | src/lib/libc/stdlib/getenv.3 | 4 | ||||
-rw-r--r-- | src/lib/libc/stdlib/getsubopt.3 | 4 | ||||
-rw-r--r-- | src/lib/libc/stdlib/ldiv.3 | 4 | ||||
-rw-r--r-- | src/lib/libc/stdlib/qdiv.3 | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/libc/stdlib/div.3 b/src/lib/libc/stdlib/div.3 index 460ab53137..a75614310e 100644 --- a/src/lib/libc/stdlib/div.3 +++ b/src/lib/libc/stdlib/div.3 | |||
@@ -27,7 +27,7 @@ | |||
27 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 27 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
28 | .\" SUCH DAMAGE. | 28 | .\" SUCH DAMAGE. |
29 | .\" | 29 | .\" |
30 | .\" $OpenBSD: div.3,v 1.6 2003/06/02 20:18:37 millert Exp $ | 30 | .\" $OpenBSD: div.3,v 1.7 2004/01/23 23:08:46 jmc Exp $ |
31 | .\" | 31 | .\" |
32 | .Dd April 19, 1991 | 32 | .Dd April 19, 1991 |
33 | .Dt DIV 3 | 33 | .Dt DIV 3 |
@@ -43,7 +43,7 @@ | |||
43 | The | 43 | The |
44 | .Fn div | 44 | .Fn div |
45 | function computes the value | 45 | function computes the value |
46 | .Fa num Ns No / Ns Fa denom | 46 | .Fa num Ns / Ns Fa denom |
47 | and returns the quotient and remainder in a structure named | 47 | and returns the quotient and remainder in a structure named |
48 | .Fa div_t | 48 | .Fa div_t |
49 | that contains two | 49 | that contains two |
diff --git a/src/lib/libc/stdlib/getenv.3 b/src/lib/libc/stdlib/getenv.3 index 25c325307d..054004e1d8 100644 --- a/src/lib/libc/stdlib/getenv.3 +++ b/src/lib/libc/stdlib/getenv.3 | |||
@@ -29,7 +29,7 @@ | |||
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
30 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
31 | .\" | 31 | .\" |
32 | .\" $OpenBSD: getenv.3,v 1.8 2003/06/02 20:18:37 millert Exp $ | 32 | .\" $OpenBSD: getenv.3,v 1.9 2004/01/23 23:08:46 jmc Exp $ |
33 | .\" | 33 | .\" |
34 | .Dd December 11, 1993 | 34 | .Dd December 11, 1993 |
35 | .Dt GETENV 3 | 35 | .Dt GETENV 3 |
@@ -87,7 +87,7 @@ is zero, the variable is not reset, otherwise it is reset to the given | |||
87 | The | 87 | The |
88 | .Fn putenv | 88 | .Fn putenv |
89 | function takes an argument of the form | 89 | function takes an argument of the form |
90 | .Ar name Ns No = Ns Ar value | 90 | .Ar name Ns = Ns Ar value |
91 | and is equivalent to: | 91 | and is equivalent to: |
92 | .Bd -literal -offset indent | 92 | .Bd -literal -offset indent |
93 | setenv(name, value, 1); | 93 | setenv(name, value, 1); |
diff --git a/src/lib/libc/stdlib/getsubopt.3 b/src/lib/libc/stdlib/getsubopt.3 index 83530653d2..8513cfb66a 100644 --- a/src/lib/libc/stdlib/getsubopt.3 +++ b/src/lib/libc/stdlib/getsubopt.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: getsubopt.3,v 1.7 2003/06/02 20:18:37 millert Exp $ | 1 | .\" $OpenBSD: getsubopt.3,v 1.8 2004/01/23 23:08:46 jmc Exp $ |
2 | .\" | 2 | .\" |
3 | .\" Copyright (c) 1990, 1991, 1993 | 3 | .\" Copyright (c) 1990, 1991, 1993 |
4 | .\" The Regents of the University of California. All rights reserved. | 4 | .\" The Regents of the University of California. All rights reserved. |
@@ -67,7 +67,7 @@ in the string, or \-1 if the string contains no tokens or | |||
67 | does not contain a matching string. | 67 | does not contain a matching string. |
68 | .Pp | 68 | .Pp |
69 | If the token is of the form | 69 | If the token is of the form |
70 | .Ar name Ns No = Ns Ar value , | 70 | .Ar name Ns = Ns Ar value , |
71 | the location referenced by | 71 | the location referenced by |
72 | .Fa valuep | 72 | .Fa valuep |
73 | will be set to point to the start of the | 73 | will be set to point to the start of the |
diff --git a/src/lib/libc/stdlib/ldiv.3 b/src/lib/libc/stdlib/ldiv.3 index f4b5a5fa45..63e1f2165c 100644 --- a/src/lib/libc/stdlib/ldiv.3 +++ b/src/lib/libc/stdlib/ldiv.3 | |||
@@ -29,7 +29,7 @@ | |||
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
30 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
31 | .\" | 31 | .\" |
32 | .\" $OpenBSD: ldiv.3,v 1.6 2003/06/02 20:18:37 millert Exp $ | 32 | .\" $OpenBSD: ldiv.3,v 1.7 2004/01/23 23:08:46 jmc Exp $ |
33 | .\" | 33 | .\" |
34 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
35 | .Dt LDIV 3 | 35 | .Dt LDIV 3 |
@@ -45,7 +45,7 @@ | |||
45 | The | 45 | The |
46 | .Fn ldiv | 46 | .Fn ldiv |
47 | function computes the value | 47 | function computes the value |
48 | .Fa num Ns No / Ns Fa denom | 48 | .Fa num Ns / Ns Fa denom |
49 | and returns the quotient and remainder in a structure named | 49 | and returns the quotient and remainder in a structure named |
50 | .Li ldiv_t | 50 | .Li ldiv_t |
51 | that contains two | 51 | that contains two |
diff --git a/src/lib/libc/stdlib/qdiv.3 b/src/lib/libc/stdlib/qdiv.3 index 597f951a99..5f17ec17d4 100644 --- a/src/lib/libc/stdlib/qdiv.3 +++ b/src/lib/libc/stdlib/qdiv.3 | |||
@@ -29,7 +29,7 @@ | |||
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
30 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
31 | .\" | 31 | .\" |
32 | .\" $OpenBSD: qdiv.3,v 1.5 2003/06/02 20:18:38 millert Exp $ | 32 | .\" $OpenBSD: qdiv.3,v 1.6 2004/01/23 23:08:46 jmc Exp $ |
33 | .\" | 33 | .\" |
34 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
35 | .Dt QDIV 3 | 35 | .Dt QDIV 3 |
@@ -45,7 +45,7 @@ | |||
45 | The | 45 | The |
46 | .Fn qdiv | 46 | .Fn qdiv |
47 | function computes the value | 47 | function computes the value |
48 | .Fa num Ns No / Ns Fa denom | 48 | .Fa num Ns / Ns Fa denom |
49 | and returns the quotient and remainder in a structure named | 49 | and returns the quotient and remainder in a structure named |
50 | .Li qdiv_t | 50 | .Li qdiv_t |
51 | that contains two | 51 | that contains two |