__MD_GetEnv now calls standard C's getenv if environment variable not in NSPR's table. r=beard

This commit is contained in:
sdagley%netscape.com 1999-10-27 22:44:48 +00:00
Родитель a1db4e901d
Коммит b0a5c50faa
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -31,6 +31,7 @@
#include <fcntl.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <stat.h>
#include <stdarg.h>
#include <unix.h>
@ -44,6 +45,9 @@
#include "mdmac.h"
// undefine getenv, so that _MD_GetEnv can call the version in NSStdLib::nsEnvironment.cpp.
#undef getenv
//
// Local routines
//
@ -181,7 +185,7 @@ char *_MD_GetEnv(const char *name)
currentVariable = currentVariable->next;
}
return NULL;
return getenv(name);
}
PR_IMPLEMENT(int)