summaryrefslogtreecommitdiffstats
path: root/example/example.c
diff options
context:
space:
mode:
Diffstat (limited to 'example/example.c')
-rw-r--r--example/example.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/example/example.c b/example/example.c
new file mode 100644
index 0000000..15615df
--- /dev/null
+++ b/example/example.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+#include "atragmx.h"
+
+int main(int argc, char** argv) {
+ printf("Hello, %s\n", argv[0]);
+ exit(EXIT_SUCCESS);
+}