diff options
Diffstat (limited to 'src/user/lib/elfload.c')
-rw-r--r-- | src/user/lib/elfload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/lib/elfload.c b/src/user/lib/elfload.c index a30fd7c..75c1162 100644 --- a/src/user/lib/elfload.c +++ b/src/user/lib/elfload.c @@ -7,7 +7,7 @@ #include <user/lib/elf.h> #include <user/lib/elfload.h> -void elf_execf(libc_file *f) { +void elf_execf(FILE *f) { const size_t cap = 0x60000; size_t pos = 0; void *buf = malloc(cap); // TODO a way to get file size |