If I want to use a method with the same name as a standard function (stat), how can I disambiguate this inside the class definition, eg:

Code:

if (stat(fpath,&(cur.st)) == EACCES) {

This is a normal stat call, but within a class method definition it appears to be a call to the method of the same name. I tried "std::stat" but that don't work...