1 /* Fake unistd.h: config.h already provides most of the relevant things. */
6 /* On Microsoft platforms, <stdlib.h> declares 'environ'; on POSIX
7 platforms, <unistd.h> does. Every file in Emacs that includes
8 <unistd.h> also includes <stdlib.h>, so there's no need to declare
11 /* Provide prototypes of library functions that are emulated on w32
12 and whose prototypes are usually found in unistd.h on POSIX
14 extern ssize_t
readlink (const char *, char *, size_t);
15 extern int symlink (char const *, char const *);
16 extern int setpgid (pid_t
, pid_t
);
17 extern pid_t
getpgrp (void);
18 extern pid_t
setsid (void);
19 extern pid_t
tcgetpgrp (int);
21 extern int faccessat (int, char const *, int, int);
23 /* These are normally on fcntl.h, but we don't override that header. */
24 /* Use values compatible with gnulib, as there's no reason to differ. */
25 #define AT_FDCWD (-3041965)
27 #define AT_SYMLINK_NOFOLLOW 4096
31 #endif /* _UNISTD_H */