diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-01-22 12:05:50 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-01-22 12:05:50 +0000 |
commit | 0a46552ab6ad5ad0dd8f93517be8d8dd71229b9f (patch) | |
tree | 346f6a55489b9fddf5892e203f1e58db85b390a2 /lib/libc/stdlib | |
parent | 0af7dd8231bef67e47c220a7bacf8f1eedabba47 (diff) |
Use .Er macro when referring to errno error names.
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/strtod.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/strtod.3 b/lib/libc/stdlib/strtod.3 index 6bba73e89a6..ef618039107 100644 --- a/lib/libc/stdlib/strtod.3 +++ b/lib/libc/stdlib/strtod.3 @@ -33,7 +33,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $OpenBSD: strtod.3,v 1.4 1999/06/29 18:36:23 aaron Exp $ +.\" $OpenBSD: strtod.3,v 1.5 2000/01/22 12:05:49 aaron Exp $ .\" .Dd June 29, 1991 .Dt STRTOD 3 @@ -87,12 +87,12 @@ is stored in the location referenced by If the correct value would cause overflow, plus or minus .Dv HUGE_VAL is returned (according to the sign of the value), and -.Dv ERANGE +.Er ERANGE is stored in .Va errno . If the correct value would cause underflow, zero is returned and -.Dv ERANGE +.Er ERANGE is stored in .Va errno . .Sh ERRORS |