b7c75fab5b
yet) also select() stub
14 lines
219 B
C
14 lines
219 B
C
/*
|
|
readlink.c
|
|
*/
|
|
|
|
#define readlink _readlink
|
|
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
|
|
int readlink(const char *path, char *buf, int bufsiz)
|
|
{
|
|
errno = EINVAL; /* "The named file is not a symbolic link" */
|
|
return -1;
|
|
}
|