=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rdist/gram.y,v retrieving revision 1.3 retrieving revision 1.4 diff -c -r1.3 -r1.4 *** src/usr.bin/rdist/gram.y 1996/03/05 03:16:05 1.3 --- src/usr.bin/rdist/gram.y 1998/06/26 21:21:11 1.4 *************** *** 1,4 **** --- 1,6 ---- %{ + /* $OpenBSD: gram.y,v 1.4 1998/06/26 21:21:11 millert Exp $ */ + /* * Copyright (c) 1993 Michael A. Cooper * Copyright (c) 1993 Regents of the University of California. *************** *** 34,41 **** */ #ifndef lint static char RCSid[] = ! "$Id: gram.y,v 1.3 1996/03/05 03:16:05 dm Exp $"; static char *sccsid = "@(#)gram.y 5.2 (Berkeley) 85/06/21"; --- 36,48 ---- */ #ifndef lint + #if 0 static char RCSid[] = ! "$From: gram.y,v 6.29 1994/04/11 23:59:15 mcooper Exp mcooper $"; ! #else ! static char RCSid[] = ! "$OpenBSD: gram.y,v 1.4 1998/06/26 21:21:11 millert Exp $"; ! #endif static char *sccsid = "@(#)gram.y 5.2 (Berkeley) 85/06/21"; *************** *** 413,418 **** --- 420,426 ---- /* * Insert or append ARROW command to list of hosts to be updated. */ + void insert(label, files, hosts, subcmds) char *label; struct namelist *files, *hosts; *************** *** 467,472 **** --- 475,481 ---- * Append DCOLON command to the end of the command list since these are always * executed in the order they appear in the distfile. */ + void append(label, files, stamp, subcmds) char *label; struct namelist *files; *************** *** 493,498 **** --- 502,508 ---- /* * Error printing routine in parser. */ + void yyerror(s) char *s; {