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

Annotation of src/usr.bin/mg/version.c, Revision 1.1

1.1     ! deraadt     1: /*
        !             2:  * This file contains the string that get written
        !             3:  * out by the emacs-version command.
        !             4:  */
        !             5:
        !             6: #define TRUE   1       /* include "def.h" when things get more complicated */
        !             7:
        !             8: char version[] = "Mg 2a (formerly MicroGnuEmacs)";
        !             9:
        !            10: /*
        !            11:  * Display the version. All this does
        !            12:  * is copy the version string onto the echo line.
        !            13:  */
        !            14: /*ARGSUSED*/
        !            15: showversion(f, n)
        !            16: int f, n;
        !            17: {
        !            18:        ewprintf(version);
        !            19:        return TRUE;
        !            20: }