mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +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;
|
|
}
|