Use generic "struct image" rather than "struct elf".

This commit is contained in:
Michael Brown
2007-01-11 16:10:32 +00:00
parent c6c63d954d
commit c810baad37
3 changed files with 25 additions and 28 deletions

View File

@@ -10,17 +10,6 @@
#include <elf.h>
/** An ELF file */
struct elf {
/** ELF file image */
userptr_t image;
/** Length of ELF file image */
size_t len;
/** Entry point */
physaddr_t entry;
};
extern int elf_load ( struct elf *elf );
extern int elf_load ( struct image *image );
#endif /* _GPXE_ELF_H */