Simplify redefinition of 'abort' (Bug#12316).
[bpt/emacs.git] / nt / inc / unistd.h
CommitLineData
c911543b 1/* Fake unistd.h: config.h already provides most of the relevant things. */
ab5796a9 2
0f7bb05d
EZ
3#ifndef _UNISTD_H
4#define _UNISTD_H
5
1088b922
PE
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
9 'environ' here. */
10
0f7bb05d
EZ
11extern ssize_t readlink (const char *, char *, size_t);
12extern int symlink (char const *, char const *);
13
14#endif /* _UNISTD_H */