19a18af35e
* fs_darwin.c => fs_darwin.cpp * fs_freebsd.c => fs_freebsd.cpp * use bool instead of int again in fs_darwin.cpp (C => C++) * declare loop varibles inline again in fs_freebsd.cpp (C => C++) * 2 newlines between top header gaurd and first #include * 2 newlines after last #include * freebsd/endian.h and freebsd/regex.h convert \r\n to just \n * remove some leading tabs in fs_freebsd.cpp * add newlines after single line if statement in fs_freebsd.cpp * 80-char limit fixes in fs_freebsd.cpp
33 lines
867 B
C
33 lines
867 B
C
#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() */
|
|
|
|
__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
|