diff options
| author | hybrid <hybrid@hybridlabs.pro> | 2026-06-26 21:29:22 +0300 |
|---|---|---|
| committer | hybrid <hybrid@hybridlabs.pro> | 2026-06-26 21:29:22 +0300 |
| commit | 4e6026b12eb00ea5bdd6dece2dfc97ffe8c2fc87 (patch) | |
| tree | 2ea1bef8ce87d9f707635ee30c7353abbb120f2e /src/main.c | |
| parent | b0463b0063a141c9d077a713c45a6dca681e9017 (diff) | |
| download | a3catragmx-4e6026b12eb00ea5bdd6dece2dfc97ffe8c2fc87.tar.gz a3catragmx-4e6026b12eb00ea5bdd6dece2dfc97ffe8c2fc87.tar.bz2 a3catragmx-4e6026b12eb00ea5bdd6dece2dfc97ffe8c2fc87.zip | |
add: Makefile, context.h
Diffstat (limited to '')
| -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]); +} |
