Add swaymsg subproject

This commit is contained in:
Drew DeVault 2015-11-26 12:41:24 -05:00
parent 206606b32c
commit d69cbeabc0
3 changed files with 29 additions and 0 deletions

11
swaymsg/main.c Normal file
View file

@ -0,0 +1,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;
}