Codebase list mg / cec9edf8-2bd2-4c0b-bbe9-38549a5ad8a2/upstream version.c
cec9edf8-2bd2-4c0b-bbe9-38549a5ad8a2/upstream

Tree @cec9edf8-2bd2-4c0b-bbe9-38549a5ad8a2/upstream (Download .tar.gz)

version.c @cec9edf8-2bd2-4c0b-bbe9-38549a5ad8a2/upstreamraw · history · blame

/*	$OpenBSD: version.c,v 1.10 2015/03/19 21:22:15 bcallah Exp $	*/

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

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

#include <sys/queue.h>
#include <signal.h>
#include <stdio.h>

#include "def.h"

const char	version[] = "Mg 2a (hboetes-20220212)";

/*
 * 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);
}