Merge pull request #688 from cjones051073/use-nsgetenviron-on-apple

Use _NSGetEnviron() on Apple
This commit is contained in:
Calvin Rose 2021-04-29 12:00:35 -05:00 committed by GitHub
commit ecb49c2e5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -56,7 +56,12 @@
#include <dirent.h>
#include <sys/types.h>
#include <sys/wait.h>
#ifdef JANET_APPLE
#include <crt_externs.h>
#define environ (*_NSGetEnviron())
#else
extern char **environ;
#endif
#ifdef JANET_THREADS
#include <pthread.h>
#endif