summaryrefslogtreecommitdiff
path: root/service/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'service/main.c')
-rw-r--r--service/main.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/service/main.c b/service/main.c
new file mode 100644
index 0000000..12a5522
--- /dev/null
+++ b/service/main.c
@@ -0,0 +1,17 @@
+#include <unistd.h>
+#include <stdio.h>
+
+#define KJARNA_REVISION 1
+
+int main(int argc, char **argv)
+{
+ (void)argc;
+ (void)argv;
+
+ printf("kjarna %d\n", KJARNA_REVISION);
+
+ while (1);
+
+ return 0;
+}
+