xref: /plan9/sys/src/libc/9sys/dirfwstat.c (revision 219b2ee8daee37f4aad58d63f21287faa8e4ffdc)
1 #include <u.h>
2 #include <libc.h>
3 #include <auth.h>
4 #include <fcall.h>
5 
6 int
7 dirfwstat(int f, Dir *dir)
8 {
9 	char buf[DIRLEN];
10 
11 	convD2M(dir, buf);
12 	return fwstat(f, buf);
13 }
14