Add swaygrab subproject

This commit is contained in:
Drew DeVault 2015-11-27 09:53:50 -05:00
parent 27f03c705d
commit 7c04cd4fc8
3 changed files with 29 additions and 0 deletions

12
swaygrab/main.c Normal file
View file

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