[BACK]Return to version.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mg

File: [local] / src / usr.bin / mg / version.c (download)

Revision 1.1, Fri Feb 25 19:08:52 2000 UTC (24 years, 3 months ago) by deraadt
Branch: MAIN

initial import of mg2a

/*
 * This file contains the string that get written
 * out by the emacs-version command.
 */

#define TRUE	1	/* include "def.h" when things get more complicated */

char version[] = "Mg 2a (formerly MicroGnuEmacs)";

/*
 * Display the version. All this does
 * is copy the version string onto the echo line.
 */
/*ARGSUSED*/
showversion(f, n)
int f, n;
{
	ewprintf(version);
	return TRUE;
}