Subversion Repositories HelenOS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  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.  */
  21.