Back out part of previous commit - K&R doesn't have const.

This commit is contained in:
Dag-Erling Smørgrav 2002-05-09 11:24:58 +00:00
parent d60315bef5
commit 7dac28cfc3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=96246

View File

@ -763,7 +763,7 @@ write_msg_out(void)
if (!Cflag) {
f_print(fout, "void _msgout(msg)\n");
f_print(fout, "\tconst char *msg;\n");
f_print(fout, "\tchar *msg;\n");
} else {
f_print(fout, "void _msgout(const char* msg)\n");
}