summaryrefslogtreecommitdiff
path: root/swaylock/main.c
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2015-12-10 07:52:24 -0500
committerDrew DeVault <[email protected]>2015-12-10 07:52:24 -0500
commitf80481a37dcdd08298a685cd188fa029e3c66ec6 (patch)
treea9845abe1cfab31e691c3b1167ea7198c4c11285 /swaylock/main.c
parentd800d52d37c4fc1cf48c15c95d0877f94c087f7f (diff)
Add swaylock subproject
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 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include "log.h"
+
+void sway_terminate(void) {
+ exit(EXIT_FAILURE);
+}
+
+int main(int argc, char **argv) {
+ init_log(L_INFO);
+ sway_log(L_INFO, "Hello world");
+ return 0;
+}