9660srv: import from Plan 9
This commit is contained in:
parent
29e9b5683e
commit
78a779a383
9 changed files with 2135 additions and 0 deletions
22
src/cmd/9660srv/data.c
Normal file
22
src/cmd/9660srv/data.c
Normal file
|
|
@ -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
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue