4.1cBSD/usr/src/usr.lib/lib2648/message.c

Compare this file to the similar file:
Show the results in this format:

/*	message.c	4.1	83/03/09	*/
/*
 * message: print str on the screen in the message area.
 */

#include "2648.h"

message(str)
char *str;
{
	dispmsg(str, 4, 4, 100);
}