summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2022-08-20 17:52:16 +0200
committerxengineering <me@xengineering.eu>2022-08-20 17:52:16 +0200
commit4e61f83b432350303aee5635e98d3bc147e8fffa (patch)
tree4ac40e73bbdc648b4cafefd4917df6cd6d1a5983 /main.c
parentb661cc4bde4004f4d7085716680969f4659222a1 (diff)
downloadlimox-4e61f83b432350303aee5635e98d3bc147e8fffa.tar
limox-4e61f83b432350303aee5635e98d3bc147e8fffa.tar.zst
limox-4e61f83b432350303aee5635e98d3bc147e8fffa.zip
Rename limox.{c,h} to net.{c,h}
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index c94b023..383079b 100644
--- a/main.c
+++ b/main.c
@@ -5,7 +5,7 @@
#include <unistd.h>
#include "gui.h"
-#include "limox.h"
+#include "net.h"
// error code definition
@@ -38,7 +38,7 @@ int main(int argc, char* argv[]) {
if (opts.unknown || opts.help) {
print_help();
} else {
- limox_init();
+ net_init();
gui_run();
}