mirror of
https://review.haiku-os.org/haiku
synced 2025-01-22 22:34:48 +01:00
e4e68917c3
* Convert fs_darwin.cpp and fs_freebsd.cpp to C. * Convert extern C calls to __BEGIN_DECLS and __END_DECLS macros * Link rm_attrs with dynamic libroot
14 lines
344 B
C
14 lines
344 B
C
#ifndef _HAIKU_BUILD_COMPATIBILITY_DARWIN_STDIO
|
|
#define _HAIKU_BUILD_COMPATIBILITY_DARWIN_STDIO
|
|
|
|
#include_next <stdio.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
int renameat(int oldFD, const char* oldPath, int newFD, const char* newPath);
|
|
int symlinkat(const char *oldPath, int fd, const char *newPath);
|
|
|
|
__END_DECLS
|
|
|
|
#endif // _HAIKU_BUILD_COMPATIBILITY_DARWIN_STDIO
|