summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe/errortab.h
blob: 8e746f029269f9dbffd742ad62ed9b473644e767 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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 "errortab"

#define __errortab __table ( struct errortab, ERRORTAB, 01 )

#endif /* _GPXE_ERRORTAB_H */