summaryrefslogtreecommitdiff
path: root/missing
diff options
context:
space:
mode:
Diffstat (limited to 'missing')
-rw-r--r--missing/setenv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/missing/setenv.c b/missing/setenv.c
index c9cb4b20e0..7e8cd383e0 100644
--- a/missing/setenv.c
+++ b/missing/setenv.c
@@ -10,7 +10,7 @@
#ifndef NT
extern char **environ;
#endif
-extern char **origenviron;
+extern char **rb_origenviron;
#ifndef NT
char *strdup();
@@ -41,7 +41,7 @@ int n;
{
register int i=envix(nam); /* where does it go? */
- if (environ == origenviron) { /* need we copy environment? */
+ if (environ == rb_origenviron) { /* need we copy environment? */
int j;
int max;
char **tmpenv;