mirror of
https://github.com/fluencelabs/musl
synced 2025-05-29 23:51: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);
|
|
}
|