ref: 62c69b81c7249ee4e69c44c64391cdf9d1a7fc3e
dir: /sys/src/ape/lib/ap/plan9/stat.c/
#include "lib.h"
#include <sys/stat.h>
#include <errno.h>
#include <stdlib.h>
#include "sys9.h"
#include "dir.h"
int
stat(const char *path, struct stat *buf)
{
Dir *d;
if((d = _dirstat(path)) == nil){
_syserrno();
return -1;
}
_dirtostat(buf, d, 0);
free(d);
return 0;
}