odissey: init/free machinarium

This commit is contained in:
Dmitry Simonenko 2017-05-24 15:20:56 +03:00
parent fed1a9f9ef
commit 1e4d25e949
1 changed files with 2 additions and 1 deletions

View File

@ -24,10 +24,11 @@
int main(int argc, char *argv[])
{
machinarium_init();
od_t odissey;
od_init(&odissey);
int rc = od_main(&odissey, argc, argv);
od_free(&odissey);
machinarium_free();
return rc;
return 0;
}