mirror of
https://github.com/janet-lang/janet
synced 2024-11-28 19:19:53 +00:00
Use _NSGetEnviron() on Apple
This commit is contained in:
parent
e181ee586b
commit
29797b9eb0
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user