mirror of
https://github.com/fluencelabs/musl
synced 2025-07-03 08:32:05 +00:00
8 lines
184 B
C
8 lines
184 B
C
#include <unistd.h>
|
|
#include "syscall.h"
|
|
|
|
int linkat(int fd1, const char *existing, int fd2, const char *new, int flag)
|
|
{
|
|
return syscall(SYS_linkat, fd1, existing, fd2, new, flag);
|
|
}
|