=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ctags/C.c,v retrieving revision 1.9 retrieving revision 1.10 diff -c -r1.9 -r1.10 *** src/usr.bin/ctags/C.c 2003/06/03 02:56:07 1.9 --- src/usr.bin/ctags/C.c 2003/06/12 20:58:09 1.10 *************** *** 1,4 **** ! /* $OpenBSD: C.c,v 1.9 2003/06/03 02:56:07 millert Exp $ */ /* $NetBSD: C.c,v 1.3 1995/03/26 20:14:02 glass Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: C.c,v 1.10 2003/06/12 20:58:09 deraadt Exp $ */ /* $NetBSD: C.c,v 1.3 1995/03/26 20:14:02 glass Exp $ */ /* *************** *** 34,40 **** #if 0 static char sccsid[] = "@(#)C.c 8.4 (Berkeley) 4/2/94"; #else ! static char rcsid[] = "$OpenBSD: C.c,v 1.9 2003/06/03 02:56:07 millert Exp $"; #endif #endif /* not lint */ --- 34,40 ---- #if 0 static char sccsid[] = "@(#)C.c 8.4 (Berkeley) 4/2/94"; #else ! static char rcsid[] = "$OpenBSD: C.c,v 1.10 2003/06/12 20:58:09 deraadt Exp $"; #endif #endif /* not lint */ *************** *** 54,60 **** * read .c and .h files and call appropriate routines */ void ! c_entries() { int c; /* current character */ int level; /* brace level */ --- 54,60 ---- * read .c and .h files and call appropriate routines */ void ! c_entries(void) { int c; /* current character */ int level; /* brace level */ *************** *** 272,278 **** * handle a function reference */ static int ! func_entry() { int c; /* current character */ int level = 0; /* for matching '()' */ --- 272,278 ---- * handle a function reference */ static int ! func_entry(void) { int c; /* current character */ int level = 0; /* for matching '()' */ *************** *** 370,376 **** * handle a line starting with a '#' */ static void ! hash_entry() { int c; /* character read */ int curline; /* line started on */ --- 370,376 ---- * handle a line starting with a '#' */ static void ! hash_entry(void) { int c; /* character read */ int curline; /* line started on */ *************** *** 439,446 **** * handle a struct, union or enum entry */ static int ! str_entry(c) ! int c; /* current character */ { int curline; /* line started on */ char *sp; /* buffer pointer */ --- 439,445 ---- * handle a struct, union or enum entry */ static int ! str_entry(int c) { int curline; /* line started on */ char *sp; /* buffer pointer */ *************** *** 525,532 **** * skip to the end of a string or character constant. */ void ! skip_string(key) ! int key; { int c, skip; --- 524,530 ---- * skip to the end of a string or character constant. */ void ! skip_string(int key) { int c, skip; *************** *** 551,558 **** * skip to next char "key" */ int ! skip_key(key) ! int key; { int c, skip, --- 549,555 ---- * skip to next char "key" */ int ! skip_key(int key) { int c, skip,