start thinking about vac -- doesn't build yet
This commit is contained in:
parent
7a4ee46d25
commit
7763a61a35
22 changed files with 7959 additions and 0 deletions
20
src/cmd/vac/error.c
Normal file
20
src/cmd/vac/error.c
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#include "stdinc.h"
|
||||
#include "vac.h"
|
||||
#include "dat.h"
|
||||
#include "fns.h"
|
||||
#include "error.h"
|
||||
|
||||
char ENoDir[] = "directory entry is not allocated";
|
||||
char EBadDir[] = "corrupted directory entry";
|
||||
char EBadMeta[] = "corrupted meta data";
|
||||
char ENotDir[] = "not a directory";
|
||||
char ENotFile[] = "not a file";
|
||||
char EIO[] = "i/o error";
|
||||
char EBadOffset[] = "illegal offset";
|
||||
char ETooBig[] = "file too big";
|
||||
char EReadOnly[] = "read only";
|
||||
char ERemoved[] = "file has been removed";
|
||||
char ENilBlock[] = "illegal block address";
|
||||
char ENotEmpty[] = "directory not empty";
|
||||
char EExists[] = "file already exists";
|
||||
char ERoot[] = "cannot remove root";
|
||||
Loading…
Add table
Add a link
Reference in a new issue