Change initenv call to environInit.

This was renamed when libenviron was incorporated into libc.
This commit is contained in:
Stephen Heumann 2017-05-14 20:31:25 -05:00
parent 5e49623b86
commit a156dc1443
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ main(int argc, char **argv)
if (getenv("NOPURGE")==NULL) system("purge >.null");
/* initialize environment */
if (initenv() !=0) {
if (environInit() !=0) {
fprintf(stderr,"Failed to initialize environment. dmake aborted.\n\n");
exit (-1);
}