[BACK]Return to gram.y CVS log [TXT][DIR] Up to [local] / src / usr.bin / rdist

Diff for /src/usr.bin/rdist/gram.y between version 1.3 and 1.4

version 1.3, 1996/03/05 03:16:05 version 1.4, 1998/06/26 21:21:11
Line 1 
Line 1 
 %{  %{
   /*      $OpenBSD$       */
   
 /*  /*
  * Copyright (c) 1993 Michael A. Cooper   * Copyright (c) 1993 Michael A. Cooper
  * Copyright (c) 1993 Regents of the University of California.   * Copyright (c) 1993 Regents of the University of California.
Line 34 
Line 36 
  */   */
   
 #ifndef lint  #ifndef lint
   #if 0
 static char RCSid[] =  static char RCSid[] =
 "$Id$";  "$From: gram.y,v 6.29 1994/04/11 23:59:15 mcooper Exp mcooper $";
   #else
   static char RCSid[] =
   "$OpenBSD$";
   #endif
   
 static  char *sccsid = "@(#)gram.y      5.2 (Berkeley) 85/06/21";  static  char *sccsid = "@(#)gram.y      5.2 (Berkeley) 85/06/21";
   
Line 413 
Line 420 
 /*  /*
  * Insert or append ARROW command to list of hosts to be updated.   * Insert or append ARROW command to list of hosts to be updated.
  */   */
   void
 insert(label, files, hosts, subcmds)  insert(label, files, hosts, subcmds)
         char *label;          char *label;
         struct namelist *files, *hosts;          struct namelist *files, *hosts;
Line 467 
Line 475 
  * Append DCOLON command to the end of the command list since these are always   * Append DCOLON command to the end of the command list since these are always
  * executed in the order they appear in the distfile.   * executed in the order they appear in the distfile.
  */   */
   void
 append(label, files, stamp, subcmds)  append(label, files, stamp, subcmds)
         char *label;          char *label;
         struct namelist *files;          struct namelist *files;
Line 493 
Line 502 
 /*  /*
  * Error printing routine in parser.   * Error printing routine in parser.
  */   */
   void
 yyerror(s)  yyerror(s)
         char *s;          char *s;
 {  {

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