factor/native/unix/run.c

14 lines
161 B
C
Raw Normal View History

#include "../factor.h"
2006-03-19 02:42:40 -05:00
void platform_run(void)
{
run_toplevel();
}
2006-03-19 02:42:40 -05:00
void early_init(void) {}
2006-03-19 19:59:45 -05:00
const char *default_image_path(void)
2006-03-19 02:42:40 -05:00
{
return "factor.image";
}