2011-02-12 00:22:29 -05:00
|
|
|
#include <unistd.h>
|
|
|
|
#include "syscall.h"
|
|
|
|
|
|
|
|
int linkat(int fd1, const char *existing, int fd2, const char *new, int flag)
|
|
|
|
{
|
2011-03-20 00:16:43 -04:00
|
|
|
return syscall(SYS_linkat, fd1, existing, fd2, new, flag);
|
2011-02-12 00:22:29 -05:00
|
|
|
}
|