~kris/9p

9hist

ref: 30f2e10cbc768fa6d91e1e6bddc910791dc51d06 9hist/mtx/main.c -rw-r--r-- 267 bytes
30f2e10c — David du Colombier Plan 9 from Bell Labs 2001-10-26 24 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(;;);
}