summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
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]);
+}