Codebase list mg / debian/20061119-1 version.c
debian/20061119-1

Tree @debian/20061119-1 (Download .tar.gz)

version.c @debian/20061119-1raw · history · blame

/*	$OpenBSD: version.c,v 1.9 2005/06/14 18:14:40 kjell Exp $	*/

/* This file is in the public domain. */

/*
 * This file contains the string that gets 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("%s", version);
	return (TRUE);
}