| Index: fusl/src/unistd/symlink.c
|
| diff --git a/fusl/src/unistd/symlink.c b/fusl/src/unistd/symlink.c
|
| index 0973d78a8936bca2cef633f361abd2401bd82f4a..e4f905444196e09dabb657fc409c8c603178d8b2 100644
|
| --- a/fusl/src/unistd/symlink.c
|
| +++ b/fusl/src/unistd/symlink.c
|
| @@ -2,11 +2,10 @@
|
| #include <fcntl.h>
|
| #include "syscall.h"
|
|
|
| -int symlink(const char *existing, const char *new)
|
| -{
|
| +int symlink(const char* existing, const char* new) {
|
| #ifdef SYS_symlink
|
| - return syscall(SYS_symlink, existing, new);
|
| + return syscall(SYS_symlink, existing, new);
|
| #else
|
| - return syscall(SYS_symlinkat, existing, AT_FDCWD, new);
|
| + return syscall(SYS_symlinkat, existing, AT_FDCWD, new);
|
| #endif
|
| }
|
|
|