1 #ifndef FS_IMPL_H 2 #define FS_IMPL_H 3 4 #include <string> 5 6 #include <SupportDefs.h> 7 8 namespace BPrivate { 9 10 // defined in fs.cpp 11 12 status_t get_path(int fd, const char *name, std::string &path); 13 14 } // namespace BPrivate 15 16 #endif // FS_IMPL_H 17