summaryrefslogtreecommitdiff
path: root/portability/unistd.h
blob: f87ff71ed647e5970dfdeb667105e09578fe79af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#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