summaryrefslogblamecommitdiffstats
path: root/contrib/syslinux-4.02/gpxe/src/include/gpxe/errortab.h
blob: 35765d48db74ffb8ab6220c98dd0957ca837dfa4 (plain) (tree)






















                                                        
#ifndef _GPXE_ERRORTAB_H
#define _GPXE_ERRORTAB_H

/** @file
 *
 * Error message tables
 *
 */

FILE_LICENCE ( GPL2_OR_LATER );

#include <gpxe/tables.h>

struct errortab {
	int errno;
	const char *text;
};

#define ERRORTAB __table ( struct errortab, "errortab" )

#define __errortab __table_entry ( ERRORTAB, 01 )

#endif /* _GPXE_ERRORTAB_H */