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