summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2007-09-16 15:20:49 +0000
committerMarc Espie <espie@cvs.openbsd.org>2007-09-16 15:20:49 +0000
commite53c2f9d614786535dfcb813ee64f4cebe0c2c96 (patch)
tree3435b574f56ab3473330949863bffc811498ed9b /usr.bin
parent54a9a48236e00d6f6bf0d016ae4ae95e01df83db (diff)
remove some totally useless comments
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/make/targ.c38
1 files changed, 1 insertions, 37 deletions
diff --git a/usr.bin/make/targ.c b/usr.bin/make/targ.c
index 9c46786d4c4..cc3ec9161cb 100644
--- a/usr.bin/make/targ.c
+++ b/usr.bin/make/targ.c
@@ -1,5 +1,5 @@
/* $OpenPackages$ */
-/* $OpenBSD: targ.c,v 1.43 2007/09/16 14:29:33 espie Exp $ */
+/* $OpenBSD: targ.c,v 1.44 2007/09/16 15:20:48 espie Exp $ */
/* $NetBSD: targ.c,v 1.11 1997/02/20 16:51:50 christos Exp $ */
/*
@@ -318,12 +318,6 @@ Targ_FindList(Lst nodes, /* result list */
}
}
-/*-
- *-----------------------------------------------------------------------
- * Targ_Ignore --
- * Return true if should ignore errors when creating gn
- *-----------------------------------------------------------------------
- */
bool
Targ_Ignore(GNode *gn)
{
@@ -333,12 +327,6 @@ Targ_Ignore(GNode *gn)
return false;
}
-/*-
- *-----------------------------------------------------------------------
- * Targ_Silent --
- * Return true if be silent when creating gn
- *-----------------------------------------------------------------------
- */
bool
Targ_Silent(GNode *gn)
{
@@ -348,12 +336,6 @@ Targ_Silent(GNode *gn)
return false;
}
-/*-
- *-----------------------------------------------------------------------
- * Targ_Precious --
- * See if the given target is precious
- *-----------------------------------------------------------------------
- */
bool
Targ_Precious(GNode *gn)
{
@@ -444,12 +426,6 @@ Targ_PrintType(int type)
}
}
-/*-
- *-----------------------------------------------------------------------
- * TargPrintNode --
- * print the contents of a node
- *-----------------------------------------------------------------------
- */
static void
TargPrintNode(GNode *gn, int pass)
{
@@ -517,12 +493,6 @@ TargPrintNode(GNode *gn, int pass)
}
}
-/*-
- *-----------------------------------------------------------------------
- * TargPrintOnlySrc --
- * Print targets that are just a source.
- *-----------------------------------------------------------------------
- */
static void
TargPrintOnlySrc(GNode *gn)
{
@@ -531,12 +501,6 @@ TargPrintOnlySrc(GNode *gn)
gn->path != NULL ? gn->path : gn->name);
}
-/*-
- *-----------------------------------------------------------------------
- * Targ_PrintGraph --
- * print the entire graph.
- *-----------------------------------------------------------------------
- */
void
Targ_PrintGraph(int pass) /* Which pass this is. 1 => no processing
* 2 => processing done */