aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/vac/error.c
blob: 5c8ff29d8e95e6214892cb88d31739ba4c2774e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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";