tdata.c - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
tdata.c (373B)
---
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 };