#include "lib.h" #include #include #include "sys9.h" #include "dir.h" int stat(const char *path, struct stat *buf) { char cd[DIRLEN]; if(_STAT(path, cd) < 0){ _syserrno(); return -1; } _dirtostat(buf, cd, 0); return 0; }