]> gitweb.factorcode.org Git - factor.git/blob - vm/os-genunix.c
Windows SEH fix
[factor.git] / vm / os-genunix.c
1 #include "factor.h"
2
3 void run(void)
4 {
5         interpreter();
6 }
7
8 void run_toplevel(void)
9 {
10         run();
11 }
12
13 const char *default_image_path(void)
14 {
15         return "factor.image";
16 }
17
18 void init_signals(void)
19 {
20         unix_init_signals();
21 }