blob: a887ee93dfb62ce9f236b7c278a58e7d5ca695f6 (
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"*/ /* Can't find this file */
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;
}
|