mirror of
https://github.com/NickHu/sway
synced 2024-12-28 22:23:30 +01:00
11 lines
159 B
C
11 lines
159 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
void sway_terminate(void) {
|
|
exit(1);
|
|
}
|
|
|
|
int main(int argc, const char **argv) {
|
|
printf("Hello world!");
|
|
return 0;
|
|
}
|