/* the unix port wants to know that real_stat() and * friends exist. So they do. */ int pseudo_stat(const char *path, struct stat *buf) { return real___xstat(_STAT_VER, path, buf); } int pseudo_lstat(const char *path, struct stat *buf) { return real___lxstat(_STAT_VER, path, buf); } int pseudo_fstat(int fd, struct stat *buf) { return real___fxstat(_STAT_VER, fd, buf); }