10 lines
175 B
C
10 lines
175 B
C
#include_next <unistd.h>
|
|
|
|
#ifdef NEED_PIPE2
|
|
int pipe2(int pipefd[2], int flags);
|
|
#endif
|
|
|
|
#ifdef __APPLE__
|
|
# include <crt_externs.h>
|
|
# define environ (*_NSGetEnviron())
|
|
#endif
|