summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorwiz <wiz@NetBSD.org>2002-08-20 15:30:07 +0000
committerwiz <wiz@NetBSD.org>2002-08-20 15:30:07 +0000
commit64f4287d6da8a0fbc75a60b628aeca74a4e50c95 (patch)
tree58e2776e68113a678e4e28f8701b28247cfa6a48 /lib
parentc33e4efde0df143252b00703c703f89174c02ab9 (diff)
Remove superfluous double quotes and a superfluous Ns.
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/stdlib/atoi.34
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/atoi.3 b/lib/libc/stdlib/atoi.3
index 4459aad3cae..e9cf3448404 100644
--- a/lib/libc/stdlib/atoi.3
+++ b/lib/libc/stdlib/atoi.3
@@ -1,4 +1,4 @@
-.\" $NetBSD: atoi.3,v 1.7 2002/07/10 14:37:16 yamt Exp $
+.\" $NetBSD: atoi.3,v 1.8 2002/08/20 15:30:07 wiz Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -80,7 +80,7 @@ function conforms to
does no overflow checking, handles unsigned numbers poorly,
and handles strings containing trailing extra characters
(like
-.Dq "123abc" Ns )
+.Dq 123abc )
poorly.
Careful use of
.Xr strtol 3