david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/gpxe/errortab.h

21 lines
269 B
C

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