xref: /csrg-svn/old/lib2648/message.c (revision 19796)
111479Sralph /*
2*19796Sdist  * Copyright (c) 1980 Regents of the University of California.
3*19796Sdist  * All rights reserved.  The Berkeley software License Agreement
4*19796Sdist  * specifies the terms and conditions for redistribution.
5*19796Sdist  */
6*19796Sdist 
7*19796Sdist #ifndef lint
8*19796Sdist static char sccsid[] = "@(#)message.c	5.1 (Berkeley) 04/30/85";
9*19796Sdist #endif not lint
10*19796Sdist 
11*19796Sdist /*
1211479Sralph  * message: print str on the screen in the message area.
1311479Sralph  */
1411479Sralph 
1511479Sralph #include "2648.h"
1611479Sralph 
message(str)1711479Sralph message(str)
1811479Sralph char *str;
1911479Sralph {
2011479Sralph 	dispmsg(str, 4, 4, 100);
2111479Sralph }
22