summaryrefslogtreecommitdiff
path: root/Src/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/init.c')
-rw-r--r--Src/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/init.c b/Src/init.c
index 02129ddbb..aa0dffd6f 100644
--- a/Src/init.c
+++ b/Src/init.c
@@ -42,7 +42,7 @@ int noexitct = 0;
/* buffer for $_ and its length */
/**/
-char *underscore;
+char *zunderscore;
/**/
int underscorelen, underscoreused;
@@ -818,9 +818,9 @@ setupvals(void)
ifs = ztrdup(DEFAULT_IFS);
wordchars = ztrdup(DEFAULT_WORDCHARS);
postedit = ztrdup("");
- underscore = (char *) zalloc(underscorelen = 32);
+ zunderscore = (char *) zalloc(underscorelen = 32);
underscoreused = 1;
- *underscore = '\0';
+ *zunderscore = '\0';
zoptarg = ztrdup("");
zoptind = 1;