aboutsummaryrefslogtreecommitdiffstats
path: root/swaylock/main.c
blob: 37513b4d9f1c40664c1f6d0fdf60ef175e12bdcf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}