libroot/posix/stdio: Remove unused portions.
[haiku.git] / src / system / libroot / posix / stdio / rename.c
blob339af4de30f3839e66b589a308479d6eb73c57e2
1 /*
2 * Copyright 2004-2009, Axel Dörfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
4 */
7 #include <errno.h>
8 #include <stdio.h>
10 #include <errno_private.h>
11 #include <syscalls.h>
12 #include <syscall_utils.h>
15 int
16 rename(const char *from, const char *to)
18 RETURN_AND_SET_ERRNO(_kern_rename(-1, from, -1, to));
22 int
23 renameat(int fromFD, const char* from, int toFD, const char* to)
25 RETURN_AND_SET_ERRNO(_kern_rename(fromFD, from, toFD, to));