Add copyright
[unix-history] / usr / src / old / lib2648 / message.c
CommitLineData
4b730da5
RC
1/* message.c 4.1 83/03/09 */
2/*
3 * message: print str on the screen in the message area.
4 */
5
6#include "2648.h"
7
8message(str)
9char *str;
10{
11 dispmsg(str, 4, 4, 100);
12}