add Berkeley/CCI specific header; fix sccsid
[unix-history] / usr / src / lib / libcurses / clear.c
CommitLineData
6e1c93d0
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
6
7#ifndef lint
8static char sccsid[] = "@(#)clear.c 5.1 (Berkeley) %G%";
9#endif not lint
10
7ba50b30
KA
11# include "curses.ext"
12
13/*
14 * This routine clears the window.
15 *
7ba50b30
KA
16 */
17wclear(win)
18reg WINDOW *win; {
19
7ba50b30
KA
20 werase(win);
21 win->_clear = TRUE;
22 return OK;
23}