2
0
mirror of https://github.com/xcat2/xNBA.git synced 2026-05-15 10:54:10 +00:00
Files
xNBA/src/include/gpxe/errortab.h
T
2007-07-24 17:11:31 +01:00

20 lines
267 B
C

#ifndef _GPXE_ERRORTAB_H
#define _GPXE_ERRORTAB_H
/** @file
*
* Error message tables
*
*/
#include <gpxe/tables.h>
struct errortab {
int errno;
const char *text;
};
#define __errortab __table ( struct errortab, errortab, 01 )
#endif /* _GPXE_ERRORTAB_H */