2005-11-30 23:43:57 +00:00
|
|
|
/*
|
|
|
|
* Stub version of readlink.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include <_ansi.h>
|
|
|
|
#include <_syslist.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#undef errno
|
|
|
|
extern int errno;
|
|
|
|
#include "warning.h"
|
|
|
|
|
|
|
|
int
|
2017-12-03 21:43:30 -06:00
|
|
|
_readlink (const char *path,
|
2017-12-03 19:31:41 -06:00
|
|
|
char *buf,
|
2005-11-30 23:43:57 +00:00
|
|
|
size_t bufsize)
|
|
|
|
{
|
|
|
|
errno = ENOSYS;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
stub_warning(_readlink)
|