summaryrefslogtreecommitdiff
path: root/main.c
blob: 5f5fc8c040a426186d7df57deca7273e929e9bf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <unistd.h>

#include "framebuffer.h"

int main(void) {
    term_init();

    fprintf(stderr, "Not yet implemented\n");

    char c;
    get_input(c);

    term_cleanup();
}