CVS commit: src/tests/lib/libc/gen
"Robert Elz" <[email protected]>
| Newsgroups | gmane.os.netbsd.devel.cvs |
|---|---|
| Message-ID | <[email protected]> |
Module Name: src Committed By: kre Date: Tue Feb 17 05:08:36 UTC 2026 Modified Files: src/tests/lib/libc/gen: t_fpclassify.c Log Message: Shorten some long function names. This is an attempt to fix 2/3 of the NetBSD builds (50 of 75) which are all failing the same way, and the only way I can make any sense of the compiler's error message, would be if the function names were exceeding a limit for the length withing which they are required to be distinct. That is, this code had makequietsignalling() makequietsignallingf() and makequietsignallingl() and gcc is complaining that the parameters to makequietsignalling() are of incorrect types, and then showing what is very clearly a call to makequietsignallingl() for which the parame are the correct types. So, make those names shorter, and with any luck, this will all build and work. (It builds on amd64, but that was one of the 25 where it did with the long names, do that's little help.) Feel free to revert this if it doesn't work! To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/tests/lib/libc/gen/t_fpclassify.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.