summaryrefslogtreecommitdiff
path: root/lib/elf.c
diff options
context:
space:
mode:
authorAlasdair Armstrong2018-06-21 16:06:21 +0100
committerAlasdair Armstrong2018-06-21 16:06:21 +0100
commit3658789d204eb100e901a2adb67b6bf8a30157bf (patch)
tree65eb0255c01214cc044ef88f3e15c8b6641901ec /lib/elf.c
parent5489108f054fb51aa190e1fda847d8ab59ee915b (diff)
Fix MIPS wrt changes to C runtime
This plus changes to bitfield internals is enough to run some MIPS tests at 1Mhz.
Diffstat (limited to 'lib/elf.c')
-rw-r--r--lib/elf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/elf.c b/lib/elf.c
index e0e75c91..566ca96a 100644
--- a/lib/elf.c
+++ b/lib/elf.c
@@ -357,7 +357,7 @@ void loadELFHdr(const char* buffer, const int total_file_size) {
}
}
-void loadELF(char *filename) {
+void load_elf(char *filename) {
// Read input file into memory
char* buffer = NULL;
int size = 0;