2005-12-01 00:43:57 +01:00
|
|
|
/*
|
|
|
|
* Stub version of symlink.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include <_ansi.h>
|
|
|
|
#include <_syslist.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#undef errno
|
|
|
|
extern int errno;
|
|
|
|
#include "warning.h"
|
|
|
|
|
|
|
|
int
|
2017-12-04 04:43:30 +01:00
|
|
|
_symlink (const char *path1,
|
2005-12-01 00:43:57 +01:00
|
|
|
const char *path2)
|
|
|
|
{
|
|
|
|
errno = ENOSYS;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
stub_warning(_symlink)
|