You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
223 B
C

#ifndef _ELF_LOADER_H
#define _ELF_LOADER_H
#include <types.h>
#include <ciloio.h>
void load_elf32_file(struct file *fp, char *cmd_line);
void load_elf64_file(struct file *fp, char *cmd_line);
#endif /* _ELF_LOADER_H */