php-src/win32/wfile.c
Kalle Sommer Nielsen 04be84748f Fix macro redef
2008-07-20 20:17:48 +00:00

18 lines
327 B
C

/* 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;
}