diff options
| author | dacctal <dacctal@symlinx.net> | 2026-06-21 01:33:58 +0000 |
|---|---|---|
| committer | dacctal <dacctal@symlinx.net> | 2026-06-21 01:33:58 +0000 |
| commit | 7cde9aeb5dccce578c1eed13cf1ed2c61e446800 (patch) | |
| tree | 3323e34bbec0a87a4bb659a90816b28a6a241f5a /src/main.c | |
| parent | 6482da05e96630d622f7deea02e31cb0ff07c89e (diff) | |
huge code cleanup
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,5 +1,4 @@ #include <stdio.h> -#include <stdlib.h> #include "cla_parse.h" #include "lua_state.h" @@ -7,10 +6,11 @@ #include "vars.h" int main(int argc, char *argv[]) { - init_vars(); - setup_pkgit(); - cache_repos(); - cla_parse(argc, argv); - free_lua_state(); - return 0; + init_vars(); + init_lua_state(); + setup_pkgit(); + cache_repos(); + cla_parse(argc, argv); + free_lua_state(); + return 0; }
\ No newline at end of file |
