Module Name: src Committed By: rillig Date: Wed Oct 21 07:14:22 UTC 2020
Modified Files: src/usr.bin/make: lst.h Log Message: make(1): remove unused typedef LstActionProc To generate a diff of this commit: cvs rdiff -u -r1.74 -r1.75 src/usr.bin/make/lst.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.bin/make/lst.h diff -u src/usr.bin/make/lst.h:1.74 src/usr.bin/make/lst.h:1.75 --- src/usr.bin/make/lst.h:1.74 Mon Oct 19 21:57:37 2020 +++ src/usr.bin/make/lst.h Wed Oct 21 07:14:22 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: lst.h,v 1.74 2020/10/19 21:57:37 rillig Exp $ */ +/* $NetBSD: lst.h,v 1.75 2020/10/21 07:14:22 rillig Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. @@ -125,8 +125,6 @@ typedef void *LstCopyProc(void *); typedef void LstFreeProc(void *); /* Return TRUE if the datum matches the args, for Lst_Find. */ typedef Boolean LstFindProc(const void *datum, const void *args); -/* An action for Lst_ForEach. */ -typedef void LstActionProc(void *datum, void *args); /* An action for Lst_ForEachUntil. */ typedef int LstActionUntilProc(void *datum, void *args);