blob: 55eab0048993dc1ce9bea9d722276e47fb274041 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "kjarna.h"
#include "fake_syscall.h"
int main(int argc, char **argv)
{
(void)argc;
(void)argv;
struct kjarna_boot_image boot_image = get_boot_image();
fake_syscall_start(&boot_image);
}
|