diff options
Diffstat (limited to 'usr.bin/make/targ.c')
-rw-r--r-- | usr.bin/make/targ.c | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/usr.bin/make/targ.c b/usr.bin/make/targ.c index 69910de30fd..b0ed4c1e5c5 100644 --- a/usr.bin/make/targ.c +++ b/usr.bin/make/targ.c @@ -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 @@ static char *rcsid = "$OpenBSD: targ.c,v 1.25 2000/06/23 16:23:26 espie Exp $"; #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 @@ static void TargFreeGN __P((void *)); * Targ_Init -- * Initialize this module * - * Results: - * None - * - * Side Effects: +* Side Effects: * The allTargets list and the targets hash table are initialized *----------------------------------------------------------------------- */ |