blob: fb1f1c4b3bfc8077fc01810b1995c0ff74926946 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* 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 */
|