blob: 080394fce60d9a68843b3b74b1e40afd67e27385 [file] [log] [blame]
#include <fcntl.h>
#include <unistd.h>
#include <sys/syscall.h>
#ifndef __NR_symlink
int symlink(const char *oldpath, const char *newpath)
{
return symlinkat(oldpath, AT_FDCWD, newpath);
}
#endif /* __NR_symlink */