Module Name: src Committed By: rillig Date: Mon Oct 5 21:37:07 UTC 2020
Modified Files: src/usr.bin/make: job.c job.h main.c parse.c suff.c Log Message: make(1): prepare job.c, main.c, parse.c, suff.c for WARNS=6 In job.c, GCC 5 complains about the macro FILENO that it has type unsigned int, which is then passed as the argument of dup2, which expects a simple int. Maybe this workaround from 1995 is not necessary anymore, or maybe it is but can be restricted to the few affected platforms. This leaves meta.c and the filemon files to be converted. I didn't do them since they are not well covered by the unit tests. To generate a diff of this commit: cvs rdiff -u -r1.260 -r1.261 src/usr.bin/make/job.c cvs rdiff -u -r1.54 -r1.55 src/usr.bin/make/job.h cvs rdiff -u -r1.369 -r1.370 src/usr.bin/make/main.c cvs rdiff -u -r1.368 -r1.369 src/usr.bin/make/parse.c cvs rdiff -u -r1.176 -r1.177 src/usr.bin/make/suff.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.