summaryrefslogtreecommitdiffstats
path: root/swaylock/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'swaylock/main.c')
-rw-r--r--swaylock/main.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/swaylock/main.c b/swaylock/main.c
new file mode 100644
index 00000000..37513b4d
--- /dev/null
+++ b/swaylock/main.c
@@ -0,0 +1,13 @@
1#include <stdio.h>
2#include <stdlib.h>
3#include "log.h"
4
5void sway_terminate(void) {
6 exit(EXIT_FAILURE);
7}
8
9int main(int argc, char **argv) {
10 init_log(L_INFO);
11 sway_log(L_INFO, "Hello world");
12 return 0;
13}