/* vi: set sw=4 ts=4: */ /* * rename() for uClibc * * Copyright (C) 2000-2006 Erik Andersen * * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ #include "syscalls.h" #include #include #include #include #define __NR___syscall_rename __NR_rename static inline _syscall2(int, __syscall_rename, const char *, oldpath, const char *, newpath); int rename(const char * oldpath, const char * newpath) { return __syscall_rename(oldpath, newpath); }