Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/make make(1): remove parameter names from function p...
details: https://anonhg.NetBSD.org/src/rev/8ed4c612c57e
branches: trunk
changeset: 937689:8ed4c612c57e
user: rillig <rillig%NetBSD.org@localhost>
date: Sun Aug 23 16:59:44 2020 +0000
description:
make(1): remove parameter names from function prototypes
Thanks kre for noticing.
diffstat:
usr.bin/make/lst.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (20 lines):
diff -r 0cec4fb9a3a6 -r 8ed4c612c57e usr.bin/make/lst.h
--- a/usr.bin/make/lst.h Sun Aug 23 16:58:02 2020 +0000
+++ b/usr.bin/make/lst.h Sun Aug 23 16:59:44 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: lst.h,v 1.41 2020/08/23 16:58:02 rillig Exp $ */
+/* $NetBSD: lst.h,v 1.42 2020/08/23 16:59:44 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -122,8 +122,8 @@
/* Remove an element */
void Lst_RemoveS(Lst, LstNode);
/* Replace a node with a new value */
-void LstNode_SetS(LstNode node, void *datum);
-void LstNode_SetNullS(LstNode node);
+void LstNode_SetS(LstNode, void *);
+void LstNode_SetNullS(LstNode);
void Lst_PrependAllS(Lst, Lst);
void Lst_AppendAllS(Lst, Lst);
void Lst_MoveAllS(Lst, Lst);
Home |
Main Index |
Thread Index |
Old Index