mirror of
https://github.com/fluencelabs/musl
synced 2025-05-31 00:21:34 +00:00
8 lines
143 B
C
8 lines
143 B
C
|
#include <stdio.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int rename(const char *old, const char *new)
|
||
|
{
|
||
|
return syscall2(__NR_rename, (long)old, (long)new);
|
||
|
}
|