mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-29 11:02:01 +00:00
0f7bb05d28
src/w32.c (symlink, readlink): New stub functions. nt/inc/unistd.h (readlink, symlink): Declare prototypes.
11 lines
244 B
C
11 lines
244 B
C
/* Fake unistd.h: config.h already provides most of the relevant things. */
|
|
|
|
#ifndef _UNISTD_H
|
|
#define _UNISTD_H
|
|
|
|
extern ssize_t readlink (const char *, char *, size_t);
|
|
extern int symlink (char const *, char const *);
|
|
|
|
#endif /* _UNISTD_H */
|
|
|