smart update: do it by chunks.
[unix-history] / usr / src / usr.bin / window / wwdata.c
CommitLineData
41910298 1#ifndef lint
e908bfac 2static char *sccsid = "@(#)wwdata.c 3.3 83/08/15";
41910298
EW
3#endif
4
5#include "ww.h"
e908bfac 6#include "tt.h"
41910298
EW
7
8struct ww wwhead = {
9 &wwhead, &wwhead
10};
11
12struct ww_tty wwnewtty = {
13 { 0, 0, -1, -1, 0 },
14 { -1, -1, -1, -1, -1, -1 },
15 { -1, -1, -1, -1, -1, -1 },
16 0, 0, 0
17};
18
19int tt_h19();
20int tt_generic();
21struct tt_tab tt_tab[] = {
22 { "h19", 3, tt_h19 },
23 { "generic", 0, tt_generic },
24 0
25};
26
27int wwbaudmap[] = {
28 0,
29 50,
30 75,
31 110,
32 134,
33 150,
34 200,
35 300,
36 600,
37 1200,
38 1800,
39 2400,
40 4800,
41 9600,
42 19200,
43 38400
44};