data.c 373 B

12345678910111213141516171819202122
  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. char Enonexist[] = "file does not exist";
  8. char Eperm[] = "permission denied";
  9. char Enofile[] = "no file system specified";
  10. char Eauth[] = "authentication failed";
  11. char *srvname = "9660";
  12. char *deffile = 0;
  13. extern Xfsub isosub;
  14. Xfsub* xsublist[] =
  15. {
  16. &isosub,
  17. 0
  18. };