Add openat to the POSIX.1-2008 namespace.

This commit is contained in:
David Schultz 2009-03-04 03:33:21 +00:00
parent a5e88ed711
commit f241d528c6

View file

@ -278,7 +278,9 @@ __BEGIN_DECLS
int open(const char *, int, ...);
int creat(const char *, mode_t);
int fcntl(int, int, ...);
#if __BSD_VISIBLE || __POSIX_VISIBLE >= 200809
int openat(int, const char *, int, ...);
#endif
#if __BSD_VISIBLE
int flock(int, int);
#endif