blob: 3a5118e03779ebf2d679ad5b565bf08d8f7a186d (
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, WFILE_EXISTS) == -1) {
errno = ENOENT;
} else {
errno = EINVAL;
}
/* Either way, it's not a link */
return -1;
}
|