Module Name: src Committed By: rillig Date: Fri Aug 21 05:28:41 UTC 2020
Modified Files: src/usr.bin/make: lst.c Log Message: make(1): remove unnecessary type duplication in list implementation Having both the interface types Lst/LstNode and the implementation types List/ListNode does not make the code clearer, it is an unnecessary abstraction. Eliminating the implementation type means that some of the local variables can be merged, which will make the code simpler than before. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/usr.bin/make/lst.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.