renamore 0.3.2

More ways to rename files.
Documentation
1
2
3
4
5
6
7
8
#define _GNU_SOURCE 1
#include <sys/syscall.h>
#include <unistd.h>

__attribute__((weak, visibility("default")))
int renameat2(int oldfd, const char *old, int newfd, const char *new, unsigned int flags) {
    return syscall(SYS_renameat2, oldfd, old, newfd, new, flags);
}