1*30673Sminshall /* 2*30673Sminshall * Copyright (c) 1984, 1985, 1986 by the Regents of the 3*30673Sminshall * University of California and by Gregory Glenn Minshall. 4*30673Sminshall * 5*30673Sminshall * Permission to use, copy, modify, and distribute these 6*30673Sminshall * programs and their documentation for any purpose and 7*30673Sminshall * without fee is hereby granted, provided that this 8*30673Sminshall * copyright and permission appear on all copies and 9*30673Sminshall * supporting documentation, the name of the Regents of 10*30673Sminshall * the University of California not be used in advertising 11*30673Sminshall * or publicity pertaining to distribution of the programs 12*30673Sminshall * without specific prior permission, and notice be given in 13*30673Sminshall * supporting documentation that copying and distribution is 14*30673Sminshall * by permission of the Regents of the University of California 15*30673Sminshall * and by Gregory Glenn Minshall. Neither the Regents of the 16*30673Sminshall * University of California nor Gregory Glenn Minshall make 17*30673Sminshall * representations about the suitability of this software 18*30673Sminshall * for any purpose. It is provided "as is" without 19*30673Sminshall * express or implied warranty. 20*30673Sminshall */ 21*30673Sminshall 22*30673Sminshall #ifndef lint 23*30673Sminshall static char sccsid[] = "@(#)globals.c 3.1 10/29/86"; 24*30673Sminshall #endif /* ndef lint */ 25*30673Sminshall 26*30673Sminshall /* 27*30673Sminshall * Do the defining instances for the globals of tn3270. 28*30673Sminshall */ 29*30673Sminshall 30*30673Sminshall #include "../ctlr/hostctlr.h" 31*30673Sminshall #include "../ascii/ascebc.h" 32*30673Sminshall #include "../ctlr/dctype.h" 33*30673Sminshall #include "../ctlr/options.h" 34*30673Sminshall #include "../ctlr/screen.h" 35*30673Sminshall #include "../keyboard/state.h" 36*30673Sminshall 37*30673Sminshall 38*30673Sminshall #define DEFINING_INSTANCES 39*30673Sminshall 40*30673Sminshall #include "globals.h" 41