diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.c | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -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]); +} |
