Pointers to Pointers

If I have a pointer in private memory that points to global memory such as:
global int * pTest;

should then a pointer to pTest not be:
global int ** p

I thought there was an issue with this, now solved

Hi. How did you solve it?