Chromium Code Reviews| Index: fusl/src/unistd/linkat.c |
| diff --git a/fusl/src/unistd/linkat.c b/fusl/src/unistd/linkat.c |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6a9a0b77591a2273ad99d46cd228ead6a60b73f6 |
| --- /dev/null |
| +++ b/fusl/src/unistd/linkat.c |
| @@ -0,0 +1,7 @@ |
| +#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); |
| +} |