=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/indent/parse.c,v retrieving revision 1.2 retrieving revision 1.3 diff -c -r1.2 -r1.3 *** src/usr.bin/indent/parse.c 1996/06/26 05:34:32 1.2 --- src/usr.bin/indent/parse.c 1997/07/25 22:00:47 1.3 *************** *** 1,4 **** ! /* $OpenBSD: parse.c,v 1.2 1996/06/26 05:34:32 deraadt Exp $ */ /* * Copyright (c) 1985 Sun Microsystems, Inc. --- 1,4 ---- ! /* $OpenBSD: parse.c,v 1.3 1997/07/25 22:00:47 mickey Exp $ */ /* * Copyright (c) 1985 Sun Microsystems, Inc. *************** *** 37,49 **** #ifndef lint /*static char sccsid[] = "from: @(#)parse.c 5.12 (Berkeley) 2/26/91";*/ ! static char rcsid[] = "$OpenBSD: parse.c,v 1.2 1996/06/26 05:34:32 deraadt Exp $"; #endif /* not lint */ #include #include "indent_globs.h" #include "indent_codes.h" parse(tk) int tk; /* the code for the construct scanned */ { --- 37,52 ---- #ifndef lint /*static char sccsid[] = "from: @(#)parse.c 5.12 (Berkeley) 2/26/91";*/ ! static char rcsid[] = "$OpenBSD: parse.c,v 1.3 1997/07/25 22:00:47 mickey Exp $"; #endif /* not lint */ #include #include "indent_globs.h" #include "indent_codes.h" + void reduce(); + + void parse(tk) int tk; /* the code for the construct scanned */ { *************** *** 245,250 **** --- 248,254 ---- /*----------------------------------------------*\ | REDUCTION PHASE | \*----------------------------------------------*/ + void reduce() {