aboutsummaryrefslogtreecommitdiffstats
path: root/swaygrab/main.c
blob: 4a15bd0698a76ecbc7d92cc9ee9ee755c3f1b70f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include <stdlib.h>
#include "log.h"

void sway_terminate(void) {
	exit(1);
}

int main(int argc, const char **argv) {
	init_log(L_INFO);
	sway_log(L_INFO, "Hello world!");
}