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