1
0
mirror of https://github.com/pevans/erc-c.git synced 2025-07-04 07:23:54 +00:00

Add get_map_machine function.

Mostly useless except for testing.
This commit is contained in:
Peter Evans
2018-01-07 20:00:09 -06:00
parent db6dde7757
commit 95e57a8e19
2 changed files with 10 additions and 0 deletions

View File

@ -294,3 +294,12 @@ vm_segment_set_map_machine(void *mach)
{
map_mach = mach;
}
/*
* Return the map machine
*/
void *
vm_segment_get_map_machine()
{
return map_mach;
}