#ifndef _HAIKU_BUILD_COMPATIBILITY_DARWIN_FCNTL #define _HAIKU_BUILD_COMPATIBILITY_DARWIN_FCNTL #include_next #include /* * 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() */ __BEGIN_DECLS int unlinkat(int fd, const char *path, int flag); int futimesat(int fd, const char *path, const struct timeval times[2]); __END_DECLS #endif // _HAIKU_BUILD_COMPATIBILITY_DARWIN_FCNTL