summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2022-02-11 21:36:46 +0000
committerrillig <rillig@NetBSD.org>2022-02-11 21:36:46 +0000
commitee74c09aab4aef92718eefe7060b28135fb26dec (patch)
treef8dd0882665484c7ccd619c0b392c5120b313f1a /lib/libc/stdlib
parent81da4f1b0d08baec7b7807cef2d7afb2c768244d (diff)
libc/getenv: remove trailing whitespace
No binary change.
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/getenv.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/stdlib/getenv.c b/lib/libc/stdlib/getenv.c
index 4d352c880d4..93faad38c78 100644
--- a/lib/libc/stdlib/getenv.c
+++ b/lib/libc/stdlib/getenv.c
@@ -1,4 +1,4 @@
-/* $NetBSD: getenv.c,v 1.36 2015/01/20 18:31:25 christos Exp $ */
+/* $NetBSD: getenv.c,v 1.37 2022/02/11 21:36:46 rillig Exp $ */
/*
* Copyright (c) 1987, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)getenv.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: getenv.c,v 1.36 2015/01/20 18:31:25 christos Exp $");
+__RCSID("$NetBSD: getenv.c,v 1.37 2022/02/11 21:36:46 rillig Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -73,7 +73,7 @@ getenv(const char *name)
result = __findenvvar(name, l_name);
(void)__unlockenv();
}
-
+
return result;
}
@@ -107,6 +107,6 @@ getenv_r(const char *name, char *buf, size_t len)
}
(void)__unlockenv();
}
-
+
return rv;
}