mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
20 lines
633 B
C
20 lines
633 B
C
#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";
|