summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorhybrid <hybrid@hybridlabs.pro>2026-06-26 21:29:22 +0300
committerhybrid <hybrid@hybridlabs.pro>2026-06-26 21:29:22 +0300
commit4e6026b12eb00ea5bdd6dece2dfc97ffe8c2fc87 (patch)
tree2ea1bef8ce87d9f707635ee30c7353abbb120f2e /src
parentb0463b0063a141c9d077a713c45a6dca681e9017 (diff)
downloada3catragmx-4e6026b12eb00ea5bdd6dece2dfc97ffe8c2fc87.tar.gz
a3catragmx-4e6026b12eb00ea5bdd6dece2dfc97ffe8c2fc87.tar.bz2
a3catragmx-4e6026b12eb00ea5bdd6dece2dfc97ffe8c2fc87.zip
add: Makefile, context.h
Diffstat (limited to '')
-rw-r--r--src/main.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/main.c b/src/main.c
index 7a6182c..01be95f 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,10 +1,8 @@
#include <stdio.h>
#include <stdlib.h>
-typedef struct {
+#include "context.h"
-} gun_config;
-
-typedef struct {
- gun_config gun;
-} ATragMXSolution;
+int main(int argc, char** argv) {
+ printf("Hello, %s\n", argv[0]);
+}