aboutsummaryrefslogtreecommitdiff
path: root/src/execute.c
blob: cfa64fba362ee340e65b4e0062682733678fcece (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <posthaste/execute.h>
#include <posthaste/lower.h>
#include <posthaste/vec.h>
#include <ejit/ejit.h>

void execute()
{
	struct fn *f = find_fn(0);
	ejit_run_func(f->f, 0, NULL);
}