mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
13 lines
194 B
C
13 lines
194 B
C
|
#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!");
|
||
|
}
|