mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
11 lines
176 B
C
Executable File
11 lines
176 B
C
Executable File
#include "config.h"
|
|
#include <_ansi.h>
|
|
#include <_syslist.h>
|
|
#include <errno.h>
|
|
|
|
int symlink(const char *path1, const char *path2)
|
|
{
|
|
errno = ENOSYS;
|
|
return -1;
|
|
}
|