blob: 1407d6a32b26cf4a82109fdd8362e331c2b3c5c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Function borrowed from the Downhill Project */
#include "wfile.h"
#include "direct.h"
int readlink(char *file_Name, char *buf_Mem, int buf_Size)
{
/* See if the file exists */
if (access(file_Name, X_OK) == -1) {
errno = ENOENT;
} else {
errno = EINVAL;
}
/* Either way, it's not a link */
return -1;
}
|