mirror of
https://review.haiku-os.org/haiku
synced 2025-02-06 05:50:48 +01:00
ef7e9d6b9b
This completes 2/3 of #8857 and is courtesy of nielx.
17 lines
271 B
C
17 lines
271 B
C
#ifndef _HAIKU_BUILD_COMPATIBILITY_DARWIN_DIRENT
|
|
#define _HAIKU_BUILD_COMPATIBILITY_DARWIN_DIRENT
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include_next <dirent.h>
|
|
|
|
DIR* fdopendir(int fd);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _HAIKU_BUILD_COMPATIBILITY_DARWIN_DIRENT
|