mirror of
https://github.com/NickHu/sway
synced 2025-01-03 23:03:42 +01:00
14 lines
209 B
C
14 lines
209 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include "log.h"
|
||
|
|
||
|
void sway_terminate(void) {
|
||
|
exit(EXIT_FAILURE);
|
||
|
}
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
init_log(L_INFO);
|
||
|
sway_log(L_INFO, "Hello world");
|
||
|
return 0;
|
||
|
}
|