factor/vm/main-unix.cpp

9 lines
140 B
C++
Raw Normal View History

2009-05-02 05:04:19 -04:00
#include "master.hpp"
int main(int argc, char **argv)
{
2009-08-28 16:46:47 -04:00
factor::init_globals();
2009-08-28 15:17:21 -04:00
factor::start_standalone_factor(argc,argv);
2009-05-02 05:04:19 -04:00
return 0;
}