summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/renameat.c
blob: b0b91fa3e7a231185b2bd294905370e4eefefefb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * renameat() for uClibc
 *
 * Copyright (C) 2009 Analog Devices Inc.
 *
 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 */

#include <sys/syscall.h>
#include <stdio.h>

#ifdef __NR_renameat
_syscall4(int, renameat, int, oldfd, const char *, old, int, newfd, const char *, new)
libc_hidden_def(renameat)
#else
/* should add emulation with rename() and /proc/self/fd/ ... */
#endif