summaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2023-06-16 07:12:46 +0000
committerrillig <rillig@NetBSD.org>2023-06-16 07:12:46 +0000
commit1e6e5f6ee8c5e2de1fcdcf30abb64336ac692a65 (patch)
tree89fdbad45011a6afe219b6d6559f1181d28f6087 /usr.bin/make
parent5f0598a32f181987b648f09aae6667d8625a7321 (diff)
make: remove parameter names from function declarations
No binary change.
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/cond.c6
-rw-r--r--usr.bin/make/make.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/make/cond.c b/usr.bin/make/cond.c
index 480ea3d716c..2aa1cc71d47 100644
--- a/usr.bin/make/cond.c
+++ b/usr.bin/make/cond.c
@@ -1,4 +1,4 @@
-/* $NetBSD: cond.c,v 1.345 2023/06/01 07:44:10 rillig Exp $ */
+/* $NetBSD: cond.c,v 1.346 2023/06/16 07:12:46 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -92,7 +92,7 @@
#include "dir.h"
/* "@(#)cond.c 8.2 (Berkeley) 1/2/94" */
-MAKE_RCSID("$NetBSD: cond.c,v 1.345 2023/06/01 07:44:10 rillig Exp $");
+MAKE_RCSID("$NetBSD: cond.c,v 1.346 2023/06/16 07:12:46 rillig Exp $");
/*
* Conditional expressions conform to this grammar:
@@ -173,7 +173,7 @@ typedef struct CondParser {
bool printedError;
} CondParser;
-static CondResult CondParser_Or(CondParser *par, bool);
+static CondResult CondParser_Or(CondParser *, bool);
unsigned int cond_depth = 0; /* current .if nesting level */
diff --git a/usr.bin/make/make.h b/usr.bin/make/make.h
index 2b8646e2cf4..cf6bca323cd 100644
--- a/usr.bin/make/make.h
+++ b/usr.bin/make/make.h
@@ -1,4 +1,4 @@
-/* $NetBSD: make.h,v 1.320 2023/06/01 07:44:10 rillig Exp $ */
+/* $NetBSD: make.h,v 1.321 2023/06/16 07:12:46 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -778,8 +778,8 @@ void Arch_End(void);
bool Arch_ParseArchive(char **, GNodeList *, GNode *);
void Arch_Touch(GNode *);
void Arch_TouchLib(GNode *);
-void Arch_UpdateMTime(GNode *gn);
-void Arch_UpdateMemberMTime(GNode *gn);
+void Arch_UpdateMTime(GNode *);
+void Arch_UpdateMemberMTime(GNode *);
void Arch_FindLib(GNode *, SearchPath *);
bool Arch_LibOODate(GNode *) MAKE_ATTR_USE;
bool Arch_IsLib(GNode *) MAKE_ATTR_USE;