ref: 7b724339b6807d81776861191cdb5ac933f2641c
dir: /libnpe/stat.c/
#include <unistd.h>
#undef stat
int
npe_stat(char *filename, struct npe_stat *buf)
{
Dir *d;
if((d = dirstat(filename)) == nil)
return -1;
buf->st_size = d->length;
buf->st_mode = d->mode;
free(d);
return 0;
}