in src/gbfiledescript.c [46:55]
int gbfiledesc_access(const char* path, int mode) { #ifdef WIN32 (void)path; (void)mode; return 0; #else return access(path, mode); #endif }