diff options
author | 2000-01-22 12:05:48 +0000 | |
---|---|---|
committer | 2000-01-22 12:05:48 +0000 | |
commit | f028b6d89b43970b5fd2a4336afd1b5136368dc7 (patch) | |
tree | aab049b3b77f7c406ee543e1cf2b9196d484a73e /lib/libc/stdlib/strtod.3 | |
parent | Use .Va macro when referring to the global variable errno. (diff) | |
download | wireguard-openbsd-f028b6d89b43970b5fd2a4336afd1b5136368dc7.tar.xz wireguard-openbsd-f028b6d89b43970b5fd2a4336afd1b5136368dc7.zip |
Use .Er macro when referring to errno error names.
Diffstat (limited to 'lib/libc/stdlib/strtod.3')
-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 |