131087Sminshall /* 2*33816Sbostic * Copyright (c) 1988 Regents of the University of California. 3*33816Sbostic * All rights reserved. 431892Sminshall * 5*33816Sbostic * Redistribution and use in source and binary forms are permitted 6*33816Sbostic * provided that this notice is preserved and that due credit is given 7*33816Sbostic * to the University of California at Berkeley. The name of the University 8*33816Sbostic * may not be used to endorse or promote products derived from this 9*33816Sbostic * software without specific prior written permission. This software 10*33816Sbostic * is provided ``as is'' without express or implied warranty. 1131892Sminshall */ 1231892Sminshall 1331892Sminshall #ifndef lint 14*33816Sbostic static char sccsid[] = "@(#)oia.c 3.2 (Berkeley) 03/28/88"; 15*33816Sbostic #endif /* not lint */ 1631892Sminshall 1731892Sminshall /* 1831087Sminshall * Routines to maintain the Operator Information Area. 1931087Sminshall */ 2031087Sminshall 2131192Sminshall #include "../general/general.h" 2231192Sminshall 2331087Sminshall #include "oia.h" 2431181Sminshall #include "../general/globals.h" 2531087Sminshall 2631087Sminshall 2731192Sminshall init_oia() 2831087Sminshall { 2931192Sminshall ClearElement(OperatorInformationArea); 3031087Sminshall } 31