plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

error.c (709B)


      1 #include "stdinc.h"
      2 #include "vac.h"
      3 #include "dat.h"
      4 #include "fns.h"
      5 #include "error.h"
      6 
      7 char ENoDir[] = "directory entry is not allocated";
      8 char ENoFile[] = "no such file or directory";
      9 char EBadPath[] = "bad path";
     10 char EBadDir[] = "corrupted directory entry";
     11 char EBadMeta[] = "corrupted meta data";
     12 char ENotDir[] = "not a directory";
     13 char ENotFile[] = "not a file";
     14 char EIO[] = "i/o error";
     15 char EBadOffset[] = "illegal offset";
     16 char ETooBig[] = "file too big";
     17 char EReadOnly[] = "read only";
     18 char ERemoved[] = "file has been removed";
     19 char ENilBlock[] = "illegal block address";
     20 char ENotEmpty[] = "directory not empty";
     21 char EExists[] = "file already exists";
     22 char ERoot[] = "cannot remove root";