summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1994-04-08 00:58:04 +0000
committercgd <cgd@NetBSD.org>1994-04-08 00:58:04 +0000
commit4fffd61a7fc262d28c7ed5ef0b88bb0ae984b8b7 (patch)
tree4d1e9767055e05f4b02c3becb7b2e6d0d16e4518 /lib/libc/stdlib
parent4c8226b387bb1dd290d41423b3ae1b124ece5c93 (diff)
fix it to be the way i *meant* it to be...
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/getenv.36
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/getenv.3 b/lib/libc/stdlib/getenv.3
index e795b1121c3..7cf1df76c4b 100644
--- a/lib/libc/stdlib/getenv.3
+++ b/lib/libc/stdlib/getenv.3
@@ -34,7 +34,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)getenv.3 6.11 (Berkeley) 6/29/91
-.\" $Id: getenv.3,v 1.5 1994/04/07 16:28:05 mycroft Exp $
+.\" $Id: getenv.3,v 1.6 1994/04/08 00:58:04 cgd Exp $
.\"
.Dd June 29, 1991
.Dt GETENV 3
@@ -99,8 +99,8 @@ to the given
.Pp
The
.Fn putenv
-function takes an argument of the form ``name=value'' and
-performs the equivalent of:
+function takes an argument of the form ``name=value'' and is
+equivalent to:
.Bd -literal -offset indent
setenv(name, value, 1);
.Ed