xref: /inferno-os/lib9/dirwstat.c (revision 7ef44d652ae9e5e1f5b3465d73684e4a54de73c0)
1 #include "lib9.h"
2 #include <sys/types.h>
3 #include <sys/stat.h>
4 
5 int
6 dirfwstat(int fd, Dir *d)
7 {
8 	return -1;
9 }
10 
11 int
12 dirwstat(char *name, Dir *d)
13 {
14 	return -1;
15 }
16