Subversion Repositories HelenOS

Rev

Rev 2894 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2832 svoboda 1
/** @addtogroup sctrace
2
 * @{
3
 */
4
/** @file
5
 */
6
 
7
#ifndef ERRORS_H_
8
#define ERRORS_H_
9
 
10
typedef struct {
11
    char *name; /**< Error value name (Exx) */
12
    char *desc; /**< Error description */
13
} err_desc_t;
14
 
15
extern const err_desc_t err_desc[];
16
 
17
#endif
18
 
19
/** @}
20
 */