summaryrefslogtreecommitdiffstats
path: root/swaymsg/main.c
blob: 824af0e628d501c2cad15a9a4c927d330ec80c6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <stdlib.h>

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

int main(int argc, const char **argv) {
	printf("Hello world!");
	return 0;
}