| Index: fusl/src/unistd/symlinkat.c
|
| diff --git a/fusl/src/unistd/symlinkat.c b/fusl/src/unistd/symlinkat.c
|
| index d1c59b4db0991d18e2d15895709d72c636f09556..f59eb2ebf72c476db5a7d62ca1cc8b65c6459b5e 100644
|
| --- a/fusl/src/unistd/symlinkat.c
|
| +++ b/fusl/src/unistd/symlinkat.c
|
| @@ -1,7 +1,6 @@
|
| #include <unistd.h>
|
| #include "syscall.h"
|
|
|
| -int symlinkat(const char *existing, int fd, const char *new)
|
| -{
|
| - return syscall(SYS_symlinkat, existing, fd, new);
|
| +int symlinkat(const char* existing, int fd, const char* new) {
|
| + return syscall(SYS_symlinkat, existing, fd, new);
|
| }
|
|
|