-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoids clash with some libelf.
- Loading branch information
Showing
3 changed files
with
26 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#include <stdint.h> | ||
|
||
void *elf_open(const char *name); | ||
void elf_reloc(void *arg, uint16_t seg); | ||
void elf_close(void *arg); | ||
void *elf_getsym(void *arg, const char *name); | ||
int elf_getsymoff(void *arg, const char *name); | ||
void *elf_getloadaddr(void *arg); | ||
int elf_getloadoff(void *arg); | ||
void *fdelf_open(const char *name); | ||
void fdelf_reloc(void *arg, uint16_t seg); | ||
void fdelf_close(void *arg); | ||
void *fdelf_getsym(void *arg, const char *name); | ||
int fdelf_getsymoff(void *arg, const char *name); | ||
void *fdelf_getloadaddr(void *arg); | ||
int fdelf_getloadoff(void *arg); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters