mirror of
https://github.com/xcat2/xNBA.git
synced 2025-01-22 07:23:23 +00:00
16 lines
174 B
C
16 lines
174 B
C
#ifndef _GPXE_ELF_H
|
|
#define _GPXE_ELF_H
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* ELF image format
|
|
*
|
|
*/
|
|
|
|
#include <elf.h>
|
|
|
|
extern int elf_load ( struct image *image );
|
|
|
|
#endif /* _GPXE_ELF_H */
|