diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-07-20 13:36:52 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-07-20 13:36:52 -0400 |
commit | fd72e3042517f3c95ab2d707e1074f4d393b5f9a (patch) | |
tree | 37928d802bfb8cfd55ea49dcb16fe03091093e65 /include/stdio.h | |
parent | 91f91bcb3abda3780347d681c3bef6201b9ca60f (diff) |
first pass at implementing *at funcs
Tested basic functionality with coreutils and things seem to work. At
least gives us a basis to jump from.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/stdio.h')
-rw-r--r-- | include/stdio.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/stdio.h b/include/stdio.h index 9336fe3cc..3c86f256b 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -148,6 +148,11 @@ libc_hidden_proto(remove) extern int rename (__const char *__old, __const char *__new) __THROW; __END_NAMESPACE_STD +#ifdef __USE_ATFILE +/* Rename file OLD relative to OLDFD to NEW relative to NEWFD. */ +extern int renameat (int __oldfd, __const char *__old, int __newfd, + __const char *__new) __THROW; +#endif __BEGIN_NAMESPACE_STD /* Create a temporary file and open it read/write. |