diff options
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..28823eb --- /dev/null +++ b/src/main.c @@ -0,0 +1,19 @@ +#include <locale.h> +#include <stdio.h> +#include <unistd.h> + +#include "ui.h" + +int main(void) +{ + setlocale(LC_ALL, ""); + + printf("%d\n", getpid()); + #if 0 + volatile int dbg = 1; + while (dbg); + #endif + + ui_init(); + ui_handle(); +} |
