=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ctags/tree.c,v retrieving revision 1.5 retrieving revision 1.6 diff -c -r1.5 -r1.6 *** src/usr.bin/ctags/tree.c 2003/06/03 02:56:07 1.5 --- src/usr.bin/ctags/tree.c 2003/06/12 20:58:09 1.6 *************** *** 1,4 **** ! /* $OpenBSD: tree.c,v 1.5 2003/06/03 02:56:07 millert Exp $ */ /* $NetBSD: tree.c,v 1.4 1995/03/26 20:14:11 glass Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: tree.c,v 1.6 2003/06/12 20:58:09 deraadt Exp $ */ /* $NetBSD: tree.c,v 1.4 1995/03/26 20:14:11 glass Exp $ */ /* *************** *** 34,40 **** #if 0 static char sccsid[] = "@(#)tree.c 8.3 (Berkeley) 4/2/94"; #else ! static char rcsid[] = "$OpenBSD: tree.c,v 1.5 2003/06/03 02:56:07 millert Exp $"; #endif #endif /* not lint */ --- 34,40 ---- #if 0 static char sccsid[] = "@(#)tree.c 8.3 (Berkeley) 4/2/94"; #else ! static char rcsid[] = "$OpenBSD: tree.c,v 1.6 2003/06/12 20:58:09 deraadt Exp $"; #endif #endif /* not lint */ *************** *** 55,63 **** * enter a new node in the tree */ void ! pfnote(name, ln) ! char *name; ! int ln; { NODE *np; char *fp; --- 55,61 ---- * enter a new node in the tree */ void ! pfnote(char *name, int ln) { NODE *np; char *fp; *************** *** 97,105 **** } static void ! add_node(node, cur_node) ! NODE *node, ! *cur_node; { int dif; --- 95,101 ---- } static void ! add_node(NODE *node, NODE *cur_node) { int dif; *************** *** 127,134 **** } static void ! free_tree(node) ! NODE *node; { while (node) { if (node->right) --- 123,129 ---- } static void ! free_tree(NODE *node) { while (node) { if (node->right)