mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-05 01:36:39 +08:00
12 lines
229 B
C
12 lines
229 B
C
#ifndef __ELF_LOADER_H
|
|
#define __ELF_LOADER_H
|
|
|
|
struct symbol {
|
|
char *name;
|
|
void *target;
|
|
};
|
|
|
|
int load_elf(const struct symbol *symbols, void *elf_data, int elf_length, void *dest, int dest_length);
|
|
|
|
#endif /* __ELF_LOADER_H */
|