diff options
| author | Russ Cox <rsc@swtch.com> | 2008-07-20 03:23:19 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@swtch.com> | 2008-07-20 03:23:19 -0400 |
| commit | 78a779a3834cf39d7c0bcd93a15824b29df947a3 (patch) | |
| tree | 7ebe47a874a3864f8e990567554b0df956590650 /src/cmd/9660srv/data.c | |
| parent | 29e9b5683ec8d610140da9118e8f004f74bc6c77 (diff) | |
| download | plan9port-78a779a3834cf39d7c0bcd93a15824b29df947a3.tar.gz plan9port-78a779a3834cf39d7c0bcd93a15824b29df947a3.zip | |
9660srv: import from Plan 9
Diffstat (limited to 'src/cmd/9660srv/data.c')
| -rw-r--r-- | src/cmd/9660srv/data.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/cmd/9660srv/data.c b/src/cmd/9660srv/data.c new file mode 100644 index 00000000..e89f8d1c --- /dev/null +++ b/src/cmd/9660srv/data.c @@ -0,0 +1,22 @@ +#include <u.h> +#include <libc.h> +#include <auth.h> +#include <fcall.h> +#include "dat.h" +#include "fns.h" + +char Enonexist[] = "file does not exist"; +char Eperm[] = "permission denied"; +char Enofile[] = "no file system specified"; +char Eauth[] = "authentication failed"; + +char *srvname = "9660"; +char *deffile = 0; + +extern Xfsub isosub; + +Xfsub* xsublist[] = +{ + &isosub, + 0 +}; |
