xref: /plan9/sys/src/cmd/9660srv/data.c (revision 219b2ee8daee37f4aad58d63f21287faa8e4ffdc)
1 #include <u.h>
2 #include <libc.h>
3 #include <auth.h>
4 #include <fcall.h>
5 #include "dat.h"
6 #include "fns.h"
7 
8 char	Enonexist[] =	"file does not exist";
9 char	Eperm[] =	"permission denied";
10 char	Enofile[] =	"no file system specified";
11 char	Eauth[] =	"authentication failed";
12 
13 char	*srvname = "9660";
14 char	*deffile = 0;
15 
16 extern Xfsub	isosub;
17 
18 Xfsub*	xsublist[] =
19 {
20 	&isosub,
21 	0
22 };
23