summaryrefslogtreecommitdiff
path: root/lib/putenv.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-01-05 23:53:49 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2012-01-05 23:55:42 -0800
commit51e801f2f297e45a24004ee6256dd1a6c7389074 (patch)
tree441ce192f710ff16aac06764e93800934a11ca6d /lib/putenv.c
parent04c1ac696211fdbc9b2dcd0790c352ddb0e9402c (diff)
downloadgnulib-51e801f2f297e45a24004ee6256dd1a6c7389074.tar.gz
In commentary, do not use ` to quote.
Diffstat (limited to 'lib/putenv.c')
-rw-r--r--lib/putenv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/putenv.c b/lib/putenv.c
index 5f26b66b86..3c0f7ead33 100644
--- a/lib/putenv.c
+++ b/lib/putenv.c
@@ -43,7 +43,7 @@ extern char **environ;
#endif
#if _LIBC
-/* This lock protects against simultaneous modifications of `environ'. */
+/* This lock protects against simultaneous modifications of 'environ'. */
# include <bits/libc-lock.h>
__libc_lock_define_initialized (static, envlock)
# define LOCK __libc_lock_lock (envlock)
@@ -91,7 +91,7 @@ _unsetenv (const char *name)
/* Put STRING, which is of the form "NAME=VALUE", in the environment.
- If STRING contains no `=', then remove STRING from the environment. */
+ If STRING contains no '=', then remove STRING from the environment. */
int
putenv (char *string)
{