http://git.etherboot.org
/
people
/
mcb30
/
gpxe.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
8e746f029269f9dbffd742ad62ed9b473644e767
[people/mcb30/gpxe.git]
/
src
/
include
/
gpxe
/
errortab.h
1
#ifndef _GPXE_ERRORTAB_H
2
#define _GPXE_ERRORTAB_H
3
4
/** @file
5
*
6
* Error message tables
7
*
8
*/
9
10
#include <gpxe/tables.h>
11
12
struct errortab {
13
int errno;
14
const char *text;
15
};
16
17
#define ERRORTAB "errortab"
18
19
#define __errortab __table ( struct errortab, ERRORTAB, 01 )
20
21
#endif /* _GPXE_ERRORTAB_H */