xref: /original-bsd/usr.bin/tn3270/ctlr/oia.c (revision e59fb703)
1 /*-
2  * Copyright (c) 1988 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)oia.c	4.2 (Berkeley) 04/26/91";
10 #endif /* not lint */
11 
12 /*
13  * Routines to maintain the Operator Information Area.
14  */
15 
16 #include "../general/general.h"
17 
18 #include "oia.h"
19 #include "../general/globals.h"
20 
21 
22 init_oia()
23 {
24     ClearElement(OperatorInformationArea);
25 }
26