Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 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
 
22
};