now we can quote or escape #
[unix-history] / usr / src / usr.bin / window / wwdata.c
CommitLineData
41910298 1#ifndef lint
c3f80cb5 2static char *sccsid = "@(#)wwdata.c 3.4 83/08/17";
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};
c3f80cb5 26char *tt_strp = tt_strings;
41910298
EW
27
28int wwbaudmap[] = {
29 0,
30 50,
31 75,
32 110,
33 134,
34 150,
35 200,
36 300,
37 600,
38 1200,
39 1800,
40 2400,
41 4800,
42 9600,
43 19200,
44 38400
45};