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

Diff for /src/usr.bin/mg/version.c between version 1.2 and 1.3

version 1.2, 2000/04/13 06:12:18 version 1.3, 2000/09/01 14:59:09
Line 3 
Line 3 
  * out by the emacs-version command.   * out by the emacs-version command.
  */   */
   
 #define TRUE    1               /* include "def.h" when things get more  #include "def.h"
                                  * complicated */  
   
 char            version[] = "Mg 2a";  char    version[] = "Mg 2a";
   
 /*  /*
  * Display the version. All this does   * Display the version. All this does
  * is copy the version string onto the echo line.   * is copy the version string onto the echo line.
  */   */
 /* ARGSUSED */  /* ARGSUSED */
   int
 showversion(f, n)  showversion(f, n)
         int             f, n;          int f, n;
 {  {
         ewprintf(version);          ewprintf(version);
         return TRUE;          return TRUE;

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3