xref: /plan9-contrib/sys/src/libc/9sys/dirfstat.c (revision 219b2ee8daee37f4aad58d63f21287faa8e4ffdc)
1 #include <u.h>
2 #include <libc.h>
3 #include <auth.h>
4 #include <fcall.h>
5 
6 int
7 dirfstat(int f, Dir *dir)
8 {
9 	char buf[DIRLEN];
10 
11 	if(fstat(f, buf) == -1)
12 		return -1;
13 	convM2D(buf, dir);
14 	return 0;
15 }
16