[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.6, Tue May 20 03:08:55 2003 UTC (21 years ago) by cloder
Branch: MAIN
Changes since 1.5: +2 -3 lines

Finish KNF of prototypes.  That should be all of them.
OK vincent@

/*	$OpenBSD: version.c,v 1.6 2003/05/20 03:08:55 cloder Exp $	*/

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

#include "def.h"

const char	version[] = "Mg 2a";

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