diff options
author | aaron <> | 2000-01-22 12:05:49 +0000 |
---|---|---|
committer | aaron <> | 2000-01-22 12:05:49 +0000 |
commit | a828cd4b1259ca9a6d8da71166c0a17cbdda9765 (patch) | |
tree | 065c111fa7a752f99ccee611e587dfd924476fef | |
parent | a475255c7bcf861fcaf7eceb2bbb736052c7ff2f (diff) | |
download | openbsd-a828cd4b1259ca9a6d8da71166c0a17cbdda9765.tar.gz openbsd-a828cd4b1259ca9a6d8da71166c0a17cbdda9765.tar.bz2 openbsd-a828cd4b1259ca9a6d8da71166c0a17cbdda9765.zip |
Use .Er macro when referring to errno error names.
-rw-r--r-- | src/lib/libc/stdlib/strtod.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libc/stdlib/strtod.3 b/src/lib/libc/stdlib/strtod.3 index 6bba73e89a..ef61803910 100644 --- a/src/lib/libc/stdlib/strtod.3 +++ b/src/lib/libc/stdlib/strtod.3 | |||
@@ -33,7 +33,7 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 34 | .\" SUCH DAMAGE. |
35 | .\" | 35 | .\" |
36 | .\" $OpenBSD: strtod.3,v 1.4 1999/06/29 18:36:23 aaron Exp $ | 36 | .\" $OpenBSD: strtod.3,v 1.5 2000/01/22 12:05:49 aaron Exp $ |
37 | .\" | 37 | .\" |
38 | .Dd June 29, 1991 | 38 | .Dd June 29, 1991 |
39 | .Dt STRTOD 3 | 39 | .Dt STRTOD 3 |
@@ -87,12 +87,12 @@ is stored in the location referenced by | |||
87 | If the correct value would cause overflow, plus or minus | 87 | If the correct value would cause overflow, plus or minus |
88 | .Dv HUGE_VAL | 88 | .Dv HUGE_VAL |
89 | is returned (according to the sign of the value), and | 89 | is returned (according to the sign of the value), and |
90 | .Dv ERANGE | 90 | .Er ERANGE |
91 | is stored in | 91 | is stored in |
92 | .Va errno . | 92 | .Va errno . |
93 | If the correct value would cause underflow, zero is | 93 | If the correct value would cause underflow, zero is |
94 | returned and | 94 | returned and |
95 | .Dv ERANGE | 95 | .Er ERANGE |
96 | is stored in | 96 | is stored in |
97 | .Va errno . | 97 | .Va errno . |
98 | .Sh ERRORS | 98 | .Sh ERRORS |