home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / util / mg-3b.lha / mg-3b / src.LZH / mg / version.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-23  |  349 b   |  21 lines

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