mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-19 04:10:18 -08:00
src/w32.c (symlink, readlink): New stub functions. nt/inc/unistd.h (readlink, symlink): Declare prototypes.
10 lines
244 B
C
10 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 */
|
|
|