From 2ad0eb2d91aa816f59ca8be579d30e4b4a5dc788 Mon Sep 17 00:00:00 2001 From: kib Date: Mon, 31 Mar 2008 12:14:04 +0000 Subject: Add the libc glue and headers definitions for the *at() syscalls. Based on the submission by rdivacky, sponsored by Google Summer of Code 2007 Reviewed by: rwatson, rdivacky Tested by: pho --- include/stdio.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/stdio.h') diff --git a/include/stdio.h b/include/stdio.h index 2a682b8..6adc9d7 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -449,5 +449,8 @@ extern int __isthreaded; #define putchar_unlocked(x) putc_unlocked(x, stdout) #endif +#if __BSD_VISIBLE +int renameat(int, const char *, int, const char *); +#endif __END_DECLS #endif /* !_STDIO_H_ */ -- cgit v1.1