=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/targ.c,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- src/usr.bin/make/targ.c 2000/06/23 16:23:26 1.25 +++ src/usr.bin/make/targ.c 2000/09/14 13:32:08 1.26 @@ -1,4 +1,4 @@ -/* $OpenBSD: targ.c,v 1.25 2000/06/23 16:23:26 espie Exp $ */ +/* $OpenBSD: targ.c,v 1.26 2000/09/14 13:32:08 espie Exp $ */ /* $NetBSD: targ.c,v 1.11 1997/02/20 16:51:50 christos Exp $ */ /* @@ -39,14 +39,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)targ.c 8.2 (Berkeley) 3/19/94"; -#else -static char *rcsid = "$OpenBSD: targ.c,v 1.25 2000/06/23 16:23:26 espie Exp $"; -#endif -#endif /* not lint */ - /*- * targ.c -- * Functions for maintaining the Lst allTargets. Target nodes are @@ -91,6 +83,15 @@ #include "hash.h" #include "dir.h" +#ifndef lint +#if 0 +static char sccsid[] = "@(#)targ.c 8.2 (Berkeley) 3/19/94"; +#else +UNUSED +static char *rcsid = "$OpenBSD: targ.c,v 1.26 2000/09/14 13:32:08 espie Exp $"; +#endif +#endif /* not lint */ + static LIST allTargets; /* the list of all targets found so far */ #ifdef CLEANUP static LIST allGNs; /* List of all the GNodes */ @@ -111,10 +112,7 @@ * Targ_Init -- * Initialize this module * - * Results: - * None - * - * Side Effects: +* Side Effects: * The allTargets list and the targets hash table are initialized *----------------------------------------------------------------------- */