Since they are generic address symbols you are trying to access and not necessarily pointers to a specific type, you don't want to declare them unsigned int, rather declare them as
extern void _region_RAM_START;
then &_region_RAM_START will have the appropriate type 'void *'.