summaryrefslogtreecommitdiff
path: root/src/kernel/elf.h
blob: 1f39afd9b28c427f925c43059c3170c8d1adecfe (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef ELF_H
#define ELF_H

#include <stdint.h>
#include "drive.h"

uint32_t try_elf_run(const struct drive *d, const char *path, const char *pass_old_vma, uint32_t io_handle);

#endif