xref: /csrg-svn/old/lib2648/message.c (revision 11479)
1*11479Sralph /*	message.c	4.1	83/03/09	*/
2*11479Sralph /*
3*11479Sralph  * message: print str on the screen in the message area.
4*11479Sralph  */
5*11479Sralph 
6*11479Sralph #include "2648.h"
7*11479Sralph 
8*11479Sralph message(str)
9*11479Sralph char *str;
10*11479Sralph {
11*11479Sralph 	dispmsg(str, 4, 4, 100);
12*11479Sralph }
13