sway/swaygrab/main.c

13 lines
194 B
C
Raw Normal View History

2015-11-27 14:53:50 +00:00
#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!");
}