summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraaron <>2000-01-22 12:05:49 +0000
committeraaron <>2000-01-22 12:05:49 +0000
commita828cd4b1259ca9a6d8da71166c0a17cbdda9765 (patch)
tree065c111fa7a752f99ccee611e587dfd924476fef
parenta475255c7bcf861fcaf7eceb2bbb736052c7ff2f (diff)
downloadopenbsd-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.36
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
87If the correct value would cause overflow, plus or minus 87If the correct value would cause overflow, plus or minus
88.Dv HUGE_VAL 88.Dv HUGE_VAL
89is returned (according to the sign of the value), and 89is returned (according to the sign of the value), and
90.Dv ERANGE 90.Er ERANGE
91is stored in 91is stored in
92.Va errno . 92.Va errno .
93If the correct value would cause underflow, zero is 93If the correct value would cause underflow, zero is
94returned and 94returned and
95.Dv ERANGE 95.Er ERANGE
96is stored in 96is stored in
97.Va errno . 97.Va errno .
98.Sh ERRORS 98.Sh ERRORS