This repository has been archived on 2025-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
portland-os/src/kernel/elf.h

9 lines
No EOL
161 B
C

#ifndef ELF_H
#define ELF_H
#include <stdint.h>
#include "drive.h"
bool try_elf_run(const struct drive *d, const char *path, const char *pass_old_vma);
#endif