Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3264 → Rev 3265

/branches/shell/uspace/app/bdsh/errstr.h
0,0 → 1,19
#ifndef ERRSTR_H
#define ERRSTR_H
 
/* Simple array to translate error codes to meaningful strings */
 
static char *cl_errors[] = {
"Success",
"Failure",
"Busy",
"No Such Entry",
"Not Enough Memory",
"Permission Denied",
"Method Not Supported",
"Bad command or file name",
NULL
};
 
#endif