~kris/9p

9hist

ref: 2fe8e6b91fc5bb6eb998fdf07b6296c1f17c4c6e 9hist/mtx/main.c -rw-r--r-- 267 bytes
2fe8e6b9 — David du Colombier Plan 9 from Bell Labs 2001-09-19 25 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include	"u.h"
#include	"../port/lib.h"
#include	"mem.h"
#include	"dat.h"
#include	"fns.h"
#include	"io.h"
#include	"init.h"
#include	"pool.h"

Conf	conf;
FPsave	initfp;

void
main(void)
{
//	xinit();
	printinit();
	i8250console();
	print("\nPlan 9\n");

	for(;;);
}