aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
blob: 28823ebe0b49f0f1327551c920f6cc6e4c33a5b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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();
}