mirror of
https://review.haiku-os.org/haiku
synced 2025-02-14 01:29:14 +01:00
21 lines
555 B
C
21 lines
555 B
C
|
#ifndef _HAIKU_BUILD_COMPATIBILITY_DARWIN_UNISTD
|
||
|
#define _HAIKU_BUILD_COMPATIBILITY_DARWIN_UNISTD
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include_next <unistd.h>
|
||
|
|
||
|
int faccessat(int fd, const char* path, int accessMode, int flag);
|
||
|
int fchownat(int fd, const char* path, uid_t owner, gid_t group, int flag);
|
||
|
ssize_t readlinkat(int fd, const char *path, char *buffer, size_t bufferSize);
|
||
|
int linkat(int oldFD, const char *oldPath, int newFD, const char *newPath,
|
||
|
int flag);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // _HAIKU_BUILD_COMPATIBILITY_DARWIN_UNISTD
|