diff options
author | jmc <> | 2022-09-11 06:38:11 +0000 |
---|---|---|
committer | jmc <> | 2022-09-11 06:38:11 +0000 |
commit | 3e268b5d835a2d2ed944b2e03c9cc7f178765bb3 (patch) | |
tree | fef440286902c30bd0cbff19e3da976f80de9175 /src/lib/libc/stdlib/strtod.3 | |
parent | 95806d271a4d8ed4658ab14b5713895696bb8919 (diff) | |
download | openbsd-3e268b5d835a2d2ed944b2e03c9cc7f178765bb3.tar.gz openbsd-3e268b5d835a2d2ed944b2e03c9cc7f178765bb3.tar.bz2 openbsd-3e268b5d835a2d2ed944b2e03c9cc7f178765bb3.zip |
.Li -> .Vt where appropriate;
from josiah frentsos, tweaked by schwarze
ok schwarze
Diffstat (limited to 'src/lib/libc/stdlib/strtod.3')
-rw-r--r-- | src/lib/libc/stdlib/strtod.3 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libc/stdlib/strtod.3 b/src/lib/libc/stdlib/strtod.3 index 0561f3615d..ad8f28a02f 100644 --- a/src/lib/libc/stdlib/strtod.3 +++ b/src/lib/libc/stdlib/strtod.3 | |||
@@ -29,9 +29,9 @@ | |||
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: strtod.3,v 1.22 2019/01/16 12:55:49 schwarze Exp $ | 32 | .\" $OpenBSD: strtod.3,v 1.23 2022/09/11 06:38:11 jmc Exp $ |
33 | .\" | 33 | .\" |
34 | .Dd $Mdocdate: January 16 2019 $ | 34 | .Dd $Mdocdate: September 11 2022 $ |
35 | .Dt STRTOD 3 | 35 | .Dt STRTOD 3 |
36 | .Os | 36 | .Os |
37 | .Sh NAME | 37 | .Sh NAME |
@@ -55,21 +55,21 @@ The | |||
55 | function converts the initial portion of the string pointed to by | 55 | function converts the initial portion of the string pointed to by |
56 | .Fa nptr | 56 | .Fa nptr |
57 | to | 57 | to |
58 | .Li double | 58 | .Vt double |
59 | representation. | 59 | representation. |
60 | The | 60 | The |
61 | .Fn strtof | 61 | .Fn strtof |
62 | function converts the initial portion of the string pointed to by | 62 | function converts the initial portion of the string pointed to by |
63 | .Fa nptr | 63 | .Fa nptr |
64 | to | 64 | to |
65 | .Li float | 65 | .Vt float |
66 | representation. | 66 | representation. |
67 | The | 67 | The |
68 | .Fn strtold | 68 | .Fn strtold |
69 | function converts the initial portion of the string pointed to by | 69 | function converts the initial portion of the string pointed to by |
70 | .Fa nptr | 70 | .Fa nptr |
71 | to | 71 | to |
72 | .Li long double | 72 | .Vt long double |
73 | representation. | 73 | representation. |
74 | .Pp | 74 | .Pp |
75 | The expected form of the string is an optional plus | 75 | The expected form of the string is an optional plus |