]> pd.if.org Git - pd_readline/blob - mg/version.c
Added mg from an OpenBSD mirror site. Many thanks to the OpenBSD team and the mg...
[pd_readline] / mg / version.c
1 /*      $OpenBSD: version.c,v 1.9 2005/06/14 18:14:40 kjell Exp $       */
2
3 /* This file is in the public domain. */
4
5 /*
6  * This file contains the string that gets written
7  * out by the emacs-version command.
8  */
9
10 #include "def.h"
11
12 const char      version[] = "Mg 2a";
13
14 /*
15  * Display the version. All this does
16  * is copy the version string onto the echo line.
17  */
18 /* ARGSUSED */
19 int
20 showversion(int f, int n)
21 {
22         ewprintf("%s", version);
23         return (TRUE);
24 }