1// AreaSupport.h
2
3#ifndef USERLAND_FS_AREA_SUPPORT_H
4#define USERLAND_FS_AREA_SUPPORT_H
5
6#include <OS.h>
7
8namespace UserlandFSUtil {
9
10status_t get_area_for_address(void* address, int32 size, area_id* area,
11	int32* offset, void** areaBaseAddress = NULL);
12
13}	// namespace UserlandFSUtil
14
15using UserlandFSUtil::get_area_for_address;
16
17#endif	// USERLAND_FS_AREA_SUPPORT_H
18