f1533b237664d1ba23c93099faf17de1eef3c0fa
[bootcensus] / src / kmain.c
1 #include <stdio.h>
2 #include "contty.h"
3
4 static int foo = 42;
5
6 void pcboot_main(void)
7 {
8         con_init();
9
10         printf("hello world: %d\n", foo);
11 }