diff options
author | dzwdz | 2022-07-26 20:40:29 +0200 |
---|---|---|
committer | dzwdz | 2022-07-26 20:44:29 +0200 |
commit | 599c916d4cdd06765e0869b0a4d685820384f500 (patch) | |
tree | 7355c35189a4b6e92249f59c76e6d89d5b432f29 /src/user/lib/elfload.h | |
parent | 350124fb4cfefc90c8f4a60de3da3c5d7da44f01 (diff) |
user: posix-compatible FILE* opening
Diffstat (limited to 'src/user/lib/elfload.h')
-rw-r--r-- | src/user/lib/elfload.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/lib/elfload.h b/src/user/lib/elfload.h index 8310b3f..d0fb29d 100644 --- a/src/user/lib/elfload.h +++ b/src/user/lib/elfload.h @@ -1,7 +1,7 @@ #pragma once #include <bits/file.h> -void elf_execf(libc_file *f); +void elf_execf(FILE *f); void elf_exec(void *elf); void *elf_partialexec(void *elf); /* returns pointer to entry point */ |