Install sccs headers and copyright notices.
[unix-history] / usr / src / usr.bin / tn3270 / ctlr / oia.c
CommitLineData
992de934
GM
1/*
2 * Copyright (c) 1984-1987 by the Regents of the
3 * University of California and by Gregory Glenn Minshall.
4 *
5 * Permission to use, copy, modify, and distribute these
6 * programs and their documentation for any purpose and
7 * without fee is hereby granted, provided that this
8 * copyright and permission appear on all copies and
9 * supporting documentation, the name of the Regents of
10 * the University of California not be used in advertising
11 * or publicity pertaining to distribution of the programs
12 * without specific prior permission, and notice be given in
13 * supporting documentation that copying and distribution is
14 * by permission of the Regents of the University of California
15 * and by Gregory Glenn Minshall. Neither the Regents of the
16 * University of California nor Gregory Glenn Minshall make
17 * representations about the suitability of this software
18 * for any purpose. It is provided "as is" without
19 * express or implied warranty.
20 */
21
22#ifndef lint
23static char sccsid[] = "@(#)oia.c 1.5 (Berkeley) %G%";
24#endif /* not lint */
25
d1add34f
GM
26/*
27 * Routines to maintain the Operator Information Area.
28 */
29
92f7501a
GM
30#include "../general/general.h"
31
d1add34f 32#include "oia.h"
d6ebedbd 33#include "../general/globals.h"
d1add34f 34
d1add34f 35
92f7501a 36init_oia()
d1add34f 37{
92f7501a 38 ClearElement(OperatorInformationArea);
d1add34f 39}