diff options
Diffstat (limited to 'libc/sysdeps/linux/common/rename.c')
-rw-r--r-- | libc/sysdeps/linux/common/rename.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/rename.c b/libc/sysdeps/linux/common/rename.c index fd7318f02..9d8397a8f 100644 --- a/libc/sysdeps/linux/common/rename.c +++ b/libc/sysdeps/linux/common/rename.c @@ -15,7 +15,7 @@ #define __NR___syscall_rename __NR_rename static __inline__ _syscall2(int, __syscall_rename, const char *, oldpath, - const char *, newpath); + const char *, newpath) int rename(const char * oldpath, const char * newpath) { |