Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3345 → Rev 3346

/trunk/uspace/app/bdsh/errstr.h
0,0 → 1,20
#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",
"Entry already exists",
NULL
};
 
#endif