2012-08-12 02:26:36 +04:00
|
|
|
#ifndef _HAIKU_BUILD_COMPATIBILITY_DARWIN_FCNTL
|
|
|
|
#define _HAIKU_BUILD_COMPATIBILITY_DARWIN_FCNTL
|
|
|
|
|
|
|
|
#include_next <fcntl.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Magic value that specify the use of the current working directory
|
|
|
|
* to determine the target of relative file paths in the openat() and
|
|
|
|
* similar syscalls.
|
|
|
|
*/
|
|
|
|
#define AT_FDCWD -100 /* CWD FD for the *at() functions */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Miscellaneous flags for the *at() syscalls.
|
|
|
|
*/
|
|
|
|
#define AT_EACCESS 0x100 /* faccessat() */
|
|
|
|
#define AT_SYMLINK_NOFOLLOW 0x200 /* fstatat(), fchmodat(), fchownat(),
|
|
|
|
utimensat() */
|
|
|
|
#define AT_SYMLINK_FOLLOW 0x400 /* linkat() */
|
|
|
|
#define AT_REMOVEDIR 0x800 /* unlinkat() */
|
|
|
|
|
2012-08-12 19:29:21 +04:00
|
|
|
__BEGIN_DECLS
|
|
|
|
|
2012-08-12 02:26:36 +04:00
|
|
|
int unlinkat(int fd, const char *path, int flag);
|
|
|
|
int futimesat(int fd, const char *path, const struct timeval times[2]);
|
|
|
|
|
2012-08-12 19:29:21 +04:00
|
|
|
__END_DECLS
|
2012-08-12 02:26:36 +04:00
|
|
|
|
|
|
|
#endif // _HAIKU_BUILD_COMPATIBILITY_DARWIN_FCNTL
|