1 /* 2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _LIBROOT_DIRENT_PRIVATE_H 6 #define _LIBROOT_DIRENT_PRIVATE_H 7 8 #include <sys/cdefs.h> 9 10 #include <dirent.h> 11 12 13 __BEGIN_DECLS 14 15 DIR* __create_dir_struct(int fd); 16 17 18 __END_DECLS 19 20 21 #endif // _LIBROOT_DIRENT_PRIVATE_H 22