| Index: fusl/src/stdio/rename.c
|
| diff --git a/fusl/src/stdio/rename.c b/fusl/src/stdio/rename.c
|
| index 04c90c01343a4b84beb5cf56b348e5d5041905ed..c94be0750c7bc971232addc16f44052fbc21fb84 100644
|
| --- a/fusl/src/stdio/rename.c
|
| +++ b/fusl/src/stdio/rename.c
|
| @@ -2,11 +2,10 @@
|
| #include <fcntl.h>
|
| #include "syscall.h"
|
|
|
| -int rename(const char *old, const char *new)
|
| -{
|
| +int rename(const char* old, const char* new) {
|
| #ifdef SYS_rename
|
| - return syscall(SYS_rename, old, new);
|
| + return syscall(SYS_rename, old, new);
|
| #else
|
| - return syscall(SYS_renameat, AT_FDCWD, old, AT_FDCWD, new);
|
| + return syscall(SYS_renameat, AT_FDCWD, old, AT_FDCWD, new);
|
| #endif
|
| }
|
|
|